C# Класс Rhino.EvaluatorException

Наследование: RhinoException
Показать файл Открыть проект

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

Метод Описание
EvaluatorException ( string detail ) : Rhino
EvaluatorException ( string detail, string sourceName, int lineNumber ) : Rhino

Create an exception with the specified detail message.

Create an exception with the specified detail message. Errors internal to the JavaScript engine will simply throw a RuntimeException.

EvaluatorException ( string detail, string sourceName, int lineNumber, string lineSource, int columnNumber ) : Rhino

Create an exception with the specified detail message.

Create an exception with the specified detail message. Errors internal to the JavaScript engine will simply throw a RuntimeException.

Приватные методы

Метод Описание
GetColumnNumber ( ) : int
GetLineNumber ( ) : int
GetLineSource ( ) : string
GetSourceName ( ) : string

Описание методов

EvaluatorException() публичный Метод

public EvaluatorException ( string detail ) : Rhino
detail string
Результат Rhino

EvaluatorException() публичный Метод

Create an exception with the specified detail message.
Create an exception with the specified detail message. Errors internal to the JavaScript engine will simply throw a RuntimeException.
public EvaluatorException ( string detail, string sourceName, int lineNumber ) : Rhino
detail string the error message
sourceName string the name of the source reponsible for the error
lineNumber int the line number of the source
Результат Rhino

EvaluatorException() публичный Метод

Create an exception with the specified detail message.
Create an exception with the specified detail message. Errors internal to the JavaScript engine will simply throw a RuntimeException.
public EvaluatorException ( string detail, string sourceName, int lineNumber, string lineSource, int columnNumber ) : Rhino
detail string the error message
sourceName string the name of the source responsible for the error
lineNumber int the line number of the source
lineSource string /// the source of the line containing the error (may be /// null if unknown) ///
columnNumber int /// the columnNumber of the source (may be zero if /// unknown) ///
Результат Rhino