C# Class Grasp.UnboundVariableException

Indicates an attempt to retrieve the value of an unbound variable
Inheritance: System.Exception
ファイルを表示 Open project: bwatts/Grasp

Public Methods

Method 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 method

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

UnboundVariableException() public method

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
return System

UnboundVariableException() public method

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
return System