C# Class Grasp.Compilation.InvalidCalculationVariableException

Indicates a calculation references a variable that is not defined in a schema's variables or as the output variable of any of a schema's calculations
Inheritance: System.Exception
Mostra file Open project: bwatts/Grasp

Public Methods

Method Description
InvalidCalculationVariableException ( Variable variable, Calculation calculation, GraspSchema schema ) : System

Initializes an exception with the specified variable, calculation, and schema

InvalidCalculationVariableException ( Variable variable, Calculation calculation, GraspSchema schema, string message ) : System

Initializes an exception with the specified variable, calculation, schema, and message

InvalidCalculationVariableException ( Variable variable, Calculation calculation, GraspSchema schema, string message, Exception inner ) : System

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

Method Details

InvalidCalculationVariableException() public method

Initializes an exception with the specified variable, calculation, and schema
public InvalidCalculationVariableException ( Variable variable, Calculation calculation, GraspSchema schema ) : System
variable Variable The invalid variable
calculation Calculation The calculation which references the invalid variable
schema GraspSchema The schema which defines the valid variables
return System

InvalidCalculationVariableException() public method

Initializes an exception with the specified variable, calculation, schema, and message
public InvalidCalculationVariableException ( Variable variable, Calculation calculation, GraspSchema schema, string message ) : System
variable Variable The invalid variable
calculation Calculation The calculation which references the invalid variable
schema GraspSchema The schema which defines the valid variables
message string The message that describes the error
return System

InvalidCalculationVariableException() public method

Initializes an exception with the specified variable, calculation, schema, message, and inner exception
public InvalidCalculationVariableException ( Variable variable, Calculation calculation, GraspSchema schema, string message, Exception inner ) : System
variable Variable The invalid variable
calculation Calculation The calculation which references the invalid variable
schema GraspSchema The schema which defines the valid variables
message string The message that describes the error
inner System.Exception The exception that is the cause of this exception
return System