C# Class Grasp.UnboundVariableException

Indicates an attempt to retrieve the value of an unbound variable
Inheritance: System.Exception
Afficher le fichier Open project: bwatts/Grasp

Méthodes publiques

Méthode Description
UnboundVariableException ( Variable variable ) : System

Initializes an exception with the specified variable

UnboundVariableException ( Variable variable, string message ) : System

Initializes an exception with the specified variable and message

UnboundVariableException ( Variable variable, string message, Exception inner ) : System

Initializes an exception with the specified variable, message, and inner exception

Method Details

UnboundVariableException() public méthode

Initializes an exception with the specified variable
public UnboundVariableException ( Variable variable ) : System
variable Variable The unbound variable
Résultat System

UnboundVariableException() public méthode

Initializes an exception with the specified variable and message
public UnboundVariableException ( Variable variable, string message ) : System
variable Variable The unbound variable
message string The message that describes the error
Résultat System

UnboundVariableException() public méthode

Initializes an exception with the specified variable, message, and inner exception
public UnboundVariableException ( Variable variable, string message, Exception inner ) : System
variable Variable The unbound variable
message string The message that describes the error
inner System.Exception The exception that is the cause of this exception
Résultat System