C# Class Elmah.ApplicationException

Inheritance: System.Exception
Mostra file Open project: elmah/Elmah

Public Methods

Method Description
ApplicationException ( ) : System

Initializes a new instance of the ApplicationException class.

ApplicationException ( string message ) : System

Initializes a new instance of the ApplicationException class with a specified error message.

ApplicationException ( string message, Exception innerException ) : System

Initializes a new instance of the ApplicationException class with a specified error message and a reference to the inner exception that is the cause of this exception.

Protected Methods

Method Description
ApplicationException ( System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context ) : System

Initializes a new instance of the ApplicationException class with serialized data.

Method Details

ApplicationException() public method

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

ApplicationException() protected method

Initializes a new instance of the ApplicationException class with serialized data.
protected ApplicationException ( System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context ) : System
info System.Runtime.Serialization.SerializationInfo
context System.Runtime.Serialization.StreamingContext
return System

ApplicationException() public method

Initializes a new instance of the ApplicationException class with a specified error message.
public ApplicationException ( string message ) : System
message string
return System

ApplicationException() public method

Initializes a new instance of the ApplicationException class with a specified error message and a reference to the inner exception that is the cause of this exception.
public ApplicationException ( string message, Exception innerException ) : System
message string
innerException System.Exception
return System