C# Class Castle.MonoRail.Framework.ControllerNotFoundException

Inheritance: System.ApplicationException
Show file Open project: nats/castle-1.0.3-mono

Public Methods

Method Description
ControllerNotFoundException ( String area, String controller ) : System

Initializes a new instance of the ControllerNotFoundException class.

ControllerNotFoundException ( String area, String controller, Exception innerException ) : System

Initializes a new instance of the ControllerNotFoundException class.

ControllerNotFoundException ( UrlInfo url ) : System

Initializes a new instance of the ControllerNotFoundException class.

ControllerNotFoundException ( UrlInfo url, Exception innerException ) : System

Initializes a new instance of the ControllerNotFoundException class.

GetObjectData ( SerializationInfo info, StreamingContext context ) : void

When overridden in a derived class, sets the T:System.Runtime.Serialization.SerializationInfo with information about the exception.

Protected Methods

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

Initializes a new instance of the ControllerNotFoundException class.

Private Methods

Method Description
BuildExceptionMessage ( String area, String controller ) : String

Builds the exception message.

Method Details

ControllerNotFoundException() protected method

Initializes a new instance of the ControllerNotFoundException class.
protected ControllerNotFoundException ( 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

ControllerNotFoundException() public method

Initializes a new instance of the ControllerNotFoundException class.
public ControllerNotFoundException ( String area, String controller ) : System
area String The area.
controller String The controller.
return System

ControllerNotFoundException() public method

Initializes a new instance of the ControllerNotFoundException class.
public ControllerNotFoundException ( String area, String controller, Exception innerException ) : System
area String The area.
controller String The controller.
innerException System.Exception The inner exception.
return System

ControllerNotFoundException() public method

Initializes a new instance of the ControllerNotFoundException class.
public ControllerNotFoundException ( UrlInfo url ) : System
url UrlInfo The URL.
return System

ControllerNotFoundException() public method

Initializes a new instance of the ControllerNotFoundException class.
public ControllerNotFoundException ( UrlInfo url, Exception innerException ) : System
url UrlInfo The URL.
innerException System.Exception The inner exception.
return System

GetObjectData() public method

When overridden in a derived class, sets the T:System.Runtime.Serialization.SerializationInfo with information about the exception.
The parameter is a null reference ( in Visual Basic).
public GetObjectData ( SerializationInfo info, StreamingContext context ) : void
info System.Runtime.Serialization.SerializationInfo The that holds the serialized object data about the exception being thrown.
context System.Runtime.Serialization.StreamingContext The that contains contextual information about the source or destination.
return void