C# Class EliteAPI.Exceptions.Abstractions.EliteDangerousApiException

Base class for all EliteAPI's exceptions
Inheritance: Exception
Show file Open project: EliteAPI/EliteAPI

Protected Methods

Method Description
EliteDangerousApiException ( ) : System

Initializes a new instance of the EliteDangerousApiException class

EliteDangerousApiException ( string message ) : System

Initializes a new instance of the EliteDangerousApiException class with a specified error message

EliteDangerousApiException ( string message, Exception innerException ) : System

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

Method Details

EliteDangerousApiException() protected method

Initializes a new instance of the EliteDangerousApiException class
protected EliteDangerousApiException ( ) : System
return System

EliteDangerousApiException() protected method

Initializes a new instance of the EliteDangerousApiException class with a specified error message
protected EliteDangerousApiException ( string message ) : System
message string The message that describes the error
return System

EliteDangerousApiException() protected method

Initializes a new instance of the EliteDangerousApiException class with a specified error message and a reference to the inner exception that is the cause of this exception
protected EliteDangerousApiException ( string message, Exception innerException ) : System
message string The message that describes the error
innerException Exception The inner exception that caused this exception
return System