C# Class Crabwise.CommandWrap.CommandException

Inheritance: System.Exception
ファイルを表示 Open project: CrabwiseStudios/CommandWrap

Public Methods

Method Description
CommandException ( ) : System

Initializes a new instance of the CommandException class.

CommandException ( string message ) : System

Initializes a new instance of the CommandException class.

CommandException ( string message, Exception inner ) : System

Initializes a new instance of the CommandException class.

CommandException ( string message, Exception inner, Command command ) : System

Initializes a new instance of the CommandException class.

Protected Methods

Method Description
CommandException ( SerializationInfo info, StreamingContext context ) : System

Initializes a new instance of the CommandException class.

Method Details

CommandException() public method

Initializes a new instance of the CommandException class.
public CommandException ( ) : System
return System

CommandException() protected method

Initializes a new instance of the CommandException class.
protected CommandException ( SerializationInfo info, StreamingContext context ) : System
info System.Runtime.Serialization.SerializationInfo The given serialized info.
context System.Runtime.Serialization.StreamingContext Information about the stream and sender.
return System

CommandException() public method

Initializes a new instance of the CommandException class.
public CommandException ( string message ) : System
message string The error message associated with the exception.
return System

CommandException() public method

Initializes a new instance of the CommandException class.
public CommandException ( string message, Exception inner ) : System
message string The error message associated with the exception.
inner System.Exception The inner exception.
return System

CommandException() public method

Initializes a new instance of the CommandException class.
public CommandException ( string message, Exception inner, Command command ) : System
message string The error message associated with the exception.
inner System.Exception The inner exception.
command Command The object associated with the exception.
return System