C# 클래스 Rhino.EvaluatorException

상속: RhinoException
파일 보기 프로젝트 열기: hazzik/Rhino.Net

공개 메소드들

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