| java.lang.Object java.lang.Throwable java.lang.Exception java.lang.RuntimeException org.mozilla.javascript.RhinoException org.mozilla.javascript.EvaluatorException
All known Subclasses: org.mozilla.javascript.WrappedException,
EvaluatorException | public class EvaluatorException extends RhinoException (Code) | | The class of exceptions thrown by the JavaScript engine.
|
serialVersionUID | final static long serialVersionUID(Code) | | |
EvaluatorException | public EvaluatorException(String detail)(Code) | | |
EvaluatorException | public EvaluatorException(String detail, String sourceName, int lineNumber)(Code) | | Create an exception with the specified detail message.
Errors internal to the JavaScript engine will simply throw a
RuntimeException.
Parameters: detail - the error message Parameters: sourceName - the name of the source reponsible for the error Parameters: lineNumber - the line number of the source |
EvaluatorException | public EvaluatorException(String detail, String sourceName, int lineNumber, String lineSource, int columnNumber)(Code) | | Create an exception with the specified detail message.
Errors internal to the JavaScript engine will simply throw a
RuntimeException.
Parameters: detail - the error message Parameters: sourceName - the name of the source responsible for the error Parameters: lineNumber - the line number of the source Parameters: columnNumber - the columnNumber of the source (may be zero ifunknown) Parameters: lineSource - the source of the line containing the error (may benull if unknown) |
|
|