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

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

Méthodes publiques

Méthode 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 méthode

Initializes a new instance of the AutoDiscoveryException class.
public AutoDiscoveryException ( ) : System
Résultat System

AutoDiscoveryException() public méthode

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.
Résultat System

AutoDiscoveryException() public méthode

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.
Résultat System