C# Class org.GraphDefined.Vanaheimr.Illias.AutoDiscoveryException

The class for all errors within the AutoDiscovery<T> class
Inheritance: System.Exception
Mostrar archivo Open project: Vanaheimr/Illias

Public Methods

Method Description
AutoDiscoveryException ( ) : System

Initializes a new instance of the AutoDiscoveryException class.

AutoDiscoveryException ( String myMessage ) : System

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

AutoDiscoveryException ( String myMessage, Exception myInnerException ) : System

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

Method Details

AutoDiscoveryException() public method

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

AutoDiscoveryException() public method

Initializes a new instance of the AutoDiscoveryException class with a specified error message.
public AutoDiscoveryException ( String myMessage ) : System
myMessage String The error message that explains the reason for the exception.
return System

AutoDiscoveryException() public method

Initializes a new instance of the AutoDiscoveryException class with a specified error message and a reference to the inner exception that is the cause of this exception.
public AutoDiscoveryException ( String myMessage, Exception myInnerException ) : System
myMessage String The error message that explains the reason for the exception.
myInnerException System.Exception The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.
return System