C# Class ToolBelt.CommandLineArgumentException

Inheritance: System.ArgumentException
Datei anzeigen Open project: jlyonsmith/ToolBelt

Public Methods

Method Description
CommandLineArgumentException ( ) : System

Initializes a new instance of the CommandLineArgumentException class.

CommandLineArgumentException ( string message ) : System

Initializes a new instance of the CommandLineArgumentException class with a descriptive message.

CommandLineArgumentException ( string message, Exception innerException ) : System

Initializes a new instance of the CommandLineArgumentException class with a descriptive message and an inner exception.

Private Methods

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

Method Details

CommandLineArgumentException() public method

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

CommandLineArgumentException() public method

Initializes a new instance of the CommandLineArgumentException class with a descriptive message.
public CommandLineArgumentException ( string message ) : System
message string A descriptive message to include with the exception.
return System

CommandLineArgumentException() public method

Initializes a new instance of the CommandLineArgumentException class with a descriptive message and an inner exception.
public CommandLineArgumentException ( string message, Exception innerException ) : System
message string A descriptive message to include with the exception.
innerException System.Exception A nested exception that is the cause of the current exception.
return System