|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object java.lang.Throwable java.lang.Exception java.lang.RuntimeException org.mozilla.javascript.RhinoException
public abstract class RhinoException
The class of exceptions thrown by the JavaScript engine.
Method Summary | |
---|---|
int |
columnNumber()
The column number of the location of the error, or zero if unknown. |
java.lang.String |
details()
|
java.lang.String |
getMessage()
|
java.lang.String |
getScriptStackTrace()
Get a string representing the script stack of this exception. |
java.lang.String |
getScriptStackTrace(java.io.FilenameFilter filter)
Get a string representing the script stack of this exception. |
void |
initColumnNumber(int columnNumber)
Initialize the column number of the script statement causing the error. |
void |
initLineNumber(int lineNumber)
Initialize the line number of the script statement causing the error. |
void |
initLineSource(java.lang.String lineSource)
Initialize the text of the source line containing the error. |
void |
initSourceName(java.lang.String sourceName)
Initialize the uri of the script source containing the error. |
int |
lineNumber()
Returns the line number of the statement causing the error, or zero if not available. |
java.lang.String |
lineSource()
The source text of the line causing the error, or null if unknown. |
void |
printStackTrace(java.io.PrintStream s)
|
void |
printStackTrace(java.io.PrintWriter s)
|
java.lang.String |
sourceName()
Get the uri of the script source containing the error, or null if that information is not available. |
Methods inherited from class java.lang.Throwable |
---|
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, printStackTrace, setStackTrace, toString |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Method Detail |
---|
public final java.lang.String getMessage()
getMessage
in class java.lang.Throwable
public java.lang.String details()
public final java.lang.String sourceName()
public final void initSourceName(java.lang.String sourceName)
sourceName
- the uri of the script source responsible for the error.
It should not be null.
java.lang.IllegalStateException
- if the method is called more then once.public final int lineNumber()
public final void initLineNumber(int lineNumber)
lineNumber
- the line number in the script source.
It should be positive number.
java.lang.IllegalStateException
- if the method is called more then once.public final int columnNumber()
public final void initColumnNumber(int columnNumber)
columnNumber
- the column number in the script source.
It should be positive number.
java.lang.IllegalStateException
- if the method is called more then once.public final java.lang.String lineSource()
public final void initLineSource(java.lang.String lineSource)
lineSource
- the text of the source line responsible for the error.
It should not be null.
java.lang.IllegalStateException
- if the method is called more then once.public java.lang.String getScriptStackTrace()
public java.lang.String getScriptStackTrace(java.io.FilenameFilter filter)
filter
.
filter
- the file name filter to determine whether a file is a
script file
public void printStackTrace(java.io.PrintWriter s)
printStackTrace
in class java.lang.Throwable
public void printStackTrace(java.io.PrintStream s)
printStackTrace
in class java.lang.Throwable
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |