C# 클래스 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
상속: System.Exception
파일 보기 프로젝트 열기: bwatts/Grasp

공개 메소드들

메소드 설명
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

메소드 상세

InvalidCalculationVariableException() 공개 메소드

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
리턴 System

InvalidCalculationVariableException() 공개 메소드

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
리턴 System

InvalidCalculationVariableException() 공개 메소드

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
리턴 System