C# Class TUP.AsmResolver.Exceptions.ResolveException

Represents an exception that is occured when a resolving process has failed.
Inheritance: System.Exception
Afficher le fichier Open project: Rex-Hays/GNIDA

Méthodes publiques

Méthode Description
ResolveException ( Exception inner ) : System

Initializes a new ResolveException with a specific inner exception.

ResolveException ( string message ) : System

Initializes a new ResolveException with a specific message.

ResolveException ( string message, Exception inner ) : System

Initializes a new ResolveException with a specific message and inner exception.

Method Details

ResolveException() public méthode

Initializes a new ResolveException with a specific inner exception.
public ResolveException ( Exception inner ) : System
inner System.Exception The inner exception of the exception.
Résultat System

ResolveException() public méthode

Initializes a new ResolveException with a specific message.
public ResolveException ( string message ) : System
message string The message of the exception.
Résultat System

ResolveException() public méthode

Initializes a new ResolveException with a specific message and inner exception.
public ResolveException ( string message, Exception inner ) : System
message string The message of the exception.
inner System.Exception The inner exception of the exception.
Résultat System