InvalidHandlerSignatureException Constructor
Namespace: Riptide
Assembly: RiptideNetworking.dll
Overloads
InvalidHandlerSignatureException() | Initializes a new InvalidHandlerSignatureException instance. |
InvalidHandlerSignatureException(string) | Initializes a new InvalidHandlerSignatureException instance with a specified error message. |
InvalidHandlerSignatureException(string, Exception) | Initializes a new InvalidHandlerSignatureException instance with a specified error message and a reference to the inner exception that is the cause of this exception. |
InvalidHandlerSignatureException(Type, string) | Initializes a new InvalidHandlerSignatureException instance and constructs an error message from the given information. |
InvalidHandlerSignatureException()
Initializes a new InvalidHandlerSignatureException instance.
public InvalidHandlerSignatureException()
InvalidHandlerSignatureException(string)
Initializes a new InvalidHandlerSignatureException instance with a specified error message.
public InvalidHandlerSignatureException(string message)
Parameters
string | message |
The error message that explains the reason for the exception. |
InvalidHandlerSignatureException(string, Exception)
Initializes a new InvalidHandlerSignatureException instance with a specified error message and a reference to the inner exception that is the cause of this exception.
public InvalidHandlerSignatureException(string message, Exception inner)
Parameters
string | message |
The error message that explains the reason for the exception. |
Exception | inner |
The exception that is the cause of the current exception. If |
InvalidHandlerSignatureException(Type, string)
Initializes a new InvalidHandlerSignatureException instance and constructs an error message from the given information.
public InvalidHandlerSignatureException(Type declaringType, string handlerMethodName)
Parameters
Type | declaringType |
The type containing the handler method. |
string | handlerMethodName |
The name of the handler method. |