org.mozilla.javascript
public class EvaluatorException extends RhinoException
Constructor Summary | |
---|---|
EvaluatorException(String detail) | |
EvaluatorException(String detail, String sourceName, int lineNumber)
Create an exception with the specified detail message.
| |
EvaluatorException(String detail, String sourceName, int lineNumber, String lineSource, int columnNumber)
Create an exception with the specified detail message.
|
Method Summary | |
---|---|
int | getColumnNumber() |
int | getLineNumber() |
String | getLineSource() |
String | getSourceName() |
Parameters: detail the error message sourceName the name of the source reponsible for the error lineNumber the line number of the source
Parameters: detail the error message sourceName the name of the source reponsible for the error lineNumber the line number of the source columnNumber the columnNumber of the source (may be zero if unknown) lineSource the source of the line containing the error (may be null if unknown)
Deprecated: Use {@link RhinoException#columnNumber()} from the super class.
Deprecated: Use {@link RhinoException#lineNumber()} from the super class.
Deprecated: Use {@link RhinoException#lineSource()} from the super class.
Deprecated: Use {@link RhinoException#sourceName()} from the super class.