C# Class Hawkeye.ComponentModel.ServiceNotFoundException

Inheritance: System.Exception
Show file Open project: odalet/Hawkeye2

Public Methods

Method Description
ServiceNotFoundException ( ) : System

Initializes a new instance of the ServiceNotFoundException class.

ServiceNotFoundException ( Type type ) : System

Initializes a new instance of the ServiceNotFoundException{T} class.

ServiceNotFoundException ( Type type, Exception innerException ) : System

Initializes a new instance of the ServiceNotFoundException{T} class.

ServiceNotFoundException ( Type type, string message ) : System

Initializes a new instance of the ServiceNotFoundException{T} class.

ServiceNotFoundException ( Type type, string message, Exception innerException ) : System

Initializes a new instance of the ServiceNotFoundException{T} class.

ServiceNotFoundException ( string message ) : System

Initializes a new instance of the ServiceNotFoundException class.

ServiceNotFoundException ( string message, Exception innerException ) : System

Initializes a new instance of the ServiceNotFoundException class.

Protected Methods

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

Initializes a new instance of the ServiceNotFoundException class.

Private Methods

Method Description
BuildMessage ( Type type ) : string
BuildMessage ( Type type, string message ) : string
GetObjectData ( SerializationInfo info, StreamingContext context ) : void

Method Details

ServiceNotFoundException() public method

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

ServiceNotFoundException() protected method

Initializes a new instance of the ServiceNotFoundException class.
The parameter is null. The class name is null or is zero (0).
protected ServiceNotFoundException ( SerializationInfo info, StreamingContext context ) : System
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 System

ServiceNotFoundException() public method

Initializes a new instance of the ServiceNotFoundException{T} class.
public ServiceNotFoundException ( Type type ) : System
type System.Type The type of the service that couldn't be found.
return System

ServiceNotFoundException() public method

Initializes a new instance of the ServiceNotFoundException{T} class.
public ServiceNotFoundException ( Type type, Exception innerException ) : System
type System.Type The type of the service that couldn't be found.
innerException System.Exception The inner exception.
return System

ServiceNotFoundException() public method

Initializes a new instance of the ServiceNotFoundException{T} class.
public ServiceNotFoundException ( Type type, string message ) : System
type System.Type The type of the service that couldn't be found.
message string The message.
return System

ServiceNotFoundException() public method

Initializes a new instance of the ServiceNotFoundException{T} class.
public ServiceNotFoundException ( Type type, string message, Exception innerException ) : System
type System.Type The type of the service that couldn't be found.
message string The message.
innerException System.Exception The inner exception.
return System

ServiceNotFoundException() public method

Initializes a new instance of the ServiceNotFoundException class.
public ServiceNotFoundException ( string message ) : System
message string The message.
return System

ServiceNotFoundException() public method

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