C# Класс Grasp.UnboundVariableException

Indicates an attempt to retrieve the value of an unbound variable
Наследование: System.Exception
Показать файл Открыть проект

Открытые методы

Метод Описание
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