Rename exception

This commit is contained in:
Raymond 2021-08-23 12:42:03 -04:00
parent ef7cc2aeb0
commit 9f834b0a48
2 changed files with 7 additions and 7 deletions

View file

@ -755,18 +755,18 @@ namespace Dalamud.Plugin
/// Invoke an action registered for inter-plugin communication.
/// </summary>
/// <param name="args">Action arguments.</param>
/// <exception cref="IpcNotReadyYetError">This is thrown when the IPC publisher has not registered an action for calling yet.</exception>
/// <exception cref="IpcNotReadyError">This is thrown when the IPC publisher has not registered an action for calling yet.</exception>
private protected void InvokeAction(params object?[]? args)
=> (this.Action ?? throw new IpcNotReadyYetError(this.Name)).DynamicInvoke(args);
=> (this.Action ?? throw new IpcNotReadyError(this.Name)).DynamicInvoke(args);
/// <summary>
/// Invoke a function registered for inter-plugin communication.
/// </summary>
/// <param name="args">Parameter args.</param>
/// <returns>The return value.</returns>
/// <exception cref="IpcNotReadyYetError">This is thrown when the IPC publisher has not registered a func for calling yet.</exception>
/// <exception cref="IpcNotReadyError">This is thrown when the IPC publisher has not registered a func for calling yet.</exception>
private protected object InvokeFunc(params object?[]? args)
=> (this.Func ?? throw new IpcNotReadyYetError(this.Name)).DynamicInvoke(args);
=> (this.Func ?? throw new IpcNotReadyError(this.Name)).DynamicInvoke(args);
}
}

View file

@ -5,13 +5,13 @@ namespace Dalamud.Plugin
/// <summary>
/// This exception is thrown when an IPC method is invoked, but nothing has been registered by that name yet.
/// </summary>
public class IpcNotReadyYetError : Exception
public class IpcNotReadyError : Exception
{
/// <summary>
/// Initializes a new instance of the <see cref="IpcNotReadyYetError"/> class.
/// Initializes a new instance of the <see cref="IpcNotReadyError"/> class.
/// </summary>
/// <param name="name">Name of the IPC method.</param>
public IpcNotReadyYetError(string name)
public IpcNotReadyError(string name)
{
this.Name = name;
}