C# 클래스 Rhino.EcmaError

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

공개 메소드들

메소드 설명
Details ( ) : string
GetErrorMessage ( ) : string

Gets the message corresponding to the error.

Gets the message corresponding to the error. See ECMA edition 3, 15.11.7.10.

GetName ( ) : string

Gets the name of the error.

Gets the name of the error. ECMA edition 3 defines the following errors: EvalError, RangeError, ReferenceError, SyntaxError, TypeError, and URIError. Additional error names may be added in the future. See ECMA edition 3, 15.11.7.9.

비공개 메소드들

메소드 설명
EcmaError ( Scriptable nativeError, string sourceName, int lineNumber, int columnNumber, string lineSource ) : Rhino
EcmaError ( string errorName, string errorMessage, 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
GetErrorObject ( ) : Scriptable
GetLineNumber ( ) : int
GetLineSource ( ) : string
GetSourceName ( ) : string

메소드 상세

Details() 공개 메소드

public Details ( ) : string
리턴 string

GetErrorMessage() 공개 메소드

Gets the message corresponding to the error.
Gets the message corresponding to the error. See ECMA edition 3, 15.11.7.10.
public GetErrorMessage ( ) : string
리턴 string

GetName() 공개 메소드

Gets the name of the error.
Gets the name of the error. ECMA edition 3 defines the following errors: EvalError, RangeError, ReferenceError, SyntaxError, TypeError, and URIError. Additional error names may be added in the future. See ECMA edition 3, 15.11.7.9.
public GetName ( ) : string
리턴 string