C# 클래스 Grasp.UnboundVariableException

Indicates an attempt to retrieve the value of an unbound variable
상속: System.Exception
파일 보기 프로젝트 열기: bwatts/Grasp

공개 메소드들

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

메소드 상세

UnboundVariableException() 공개 메소드

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

UnboundVariableException() 공개 메소드

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

UnboundVariableException() 공개 메소드

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