C# Class Neddle.NeddleException

An Neddle specific exception.
Inheritance: System.ApplicationException
Datei anzeigen Open project: kcargile/neddle

Public Methods

Method Description
NeddleException ( ) : System

Initializes a new instance of the NeddleException class.

NeddleException ( string message ) : System

Initializes a new instance of the NeddleException class.

NeddleException ( string message, Exception inner ) : System

Initializes a new instance of the NeddleException class.

Protected Methods

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

Initializes a new instance of the NeddleException class.

Method Details

NeddleException() public method

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

NeddleException() protected method

Initializes a new instance of the NeddleException class.
protected NeddleException ( SerializationInfo info, StreamingContext context ) : System
info System.Runtime.Serialization.SerializationInfo The object that holds the serialized object data.
context System.Runtime.Serialization.StreamingContext The contextual information about the source or destination.
return System

NeddleException() public method

Initializes a new instance of the NeddleException class.
public NeddleException ( string message ) : System
message string A message that describes the error.
return System

NeddleException() public method

Initializes a new instance of the NeddleException class.
public NeddleException ( string message, Exception inner ) : System
message string The message.
inner System.Exception The inner.
return System