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