|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.mozilla.javascript.EcmaError
The class of exceptions raised by the engine as described in ECMA edition 3. See section 15.11.6 in particular.
Constructor Summary | |
---|---|
EcmaError(Scriptable nativeError,
java.lang.String sourceName,
int lineNumber,
int columnNumber,
java.lang.String lineSource)
Deprecated. EcmaError error instances should not be constructed explicitly since they are generated by the engine. |
Method Summary | |
---|---|
int |
getColumnNumber()
The column number of the location of the error, or zero if unknown. |
Scriptable |
getErrorObject()
Deprecated. Always returns result of Context.getUndefinedValue() . |
int |
getLineNumber()
Returns the line number of the statement causing the error, or zero if not available. |
java.lang.String |
getLineSource()
The source of the line causing the error, or zero if unknown. |
java.lang.String |
getMessage()
Gets the message corresponding to the error. |
java.lang.String |
getName()
Gets the name of the error. |
java.lang.String |
getSourceName()
Get the name of the source containing the error, or null if that information is not available. |
java.lang.String |
toString()
Return a string representation of the error, which currently consists of the name of the error together with the message. |
Methods inherited from class java.lang.Throwable |
---|
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
public EcmaError(Scriptable nativeError, java.lang.String sourceName, int lineNumber, int columnNumber, java.lang.String lineSource)
Method Detail |
public java.lang.String toString()
public java.lang.String getName()
public java.lang.String getMessage()
public java.lang.String getSourceName()
public int getLineNumber()
public int getColumnNumber()
public java.lang.String getLineSource()
public Scriptable getErrorObject()
Context.getUndefinedValue()
.
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |