C# Class DarkRift.Dispatching.DispatcherException

Inheritance: Exception
Show file Open project: DarkRiftNetworking/DarkRift

Public Methods

Method Description
DispatcherException ( ) : System

Creates a new exception with no parameters.

DispatcherException ( string message ) : System

Creates a new exception with a message.

DispatcherException ( string message, Exception innerException ) : System

Creates a new exception with a message and inner exceptions.

Method Details

DispatcherException() public method

Creates a new exception with no parameters.
public DispatcherException ( ) : System
return System

DispatcherException() public method

Creates a new exception with a message.
public DispatcherException ( string message ) : System
message string The message for the exception.
return System

DispatcherException() public method

Creates a new exception with a message and inner exceptions.
public DispatcherException ( string message, Exception innerException ) : System
message string The message for the exception.
innerException Exception The exception raised in the task.
return System