com.google.javascript.rhino
Class EvaluatorException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.google.javascript.rhino.RhinoException
com.google.javascript.rhino.EvaluatorException
- All Implemented Interfaces:
- Serializable
public class EvaluatorException
- extends RhinoException
The class of exceptions thrown by the JavaScript engine.
- See Also:
- Serialized Form
Methods inherited from class com.google.javascript.rhino.RhinoException |
columnNumber, details, getMessage, getScriptStackTrace, getScriptStackTrace, initColumnNumber, initLineNumber, initLineSource, initSourceName, lineNumber, lineSource, printStackTrace, printStackTrace, sourceName |
EvaluatorException
public EvaluatorException(String detail)
EvaluatorException
public EvaluatorException(String detail,
String sourceName,
int lineNumber)
- Create an exception with the specified detail message.
Errors internal to the JavaScript engine will simply throw a
RuntimeException.
- Parameters:
detail
- the error messagesourceName
- the name of the source reponsible for the errorlineNumber
- the line number of the source
EvaluatorException
public EvaluatorException(String detail,
String sourceName,
int lineNumber,
String lineSource,
int columnNumber)
- Create an exception with the specified detail message.
Errors internal to the JavaScript engine will simply throw a
RuntimeException.
- Parameters:
detail
- the error messagesourceName
- the name of the source reponsible for the errorlineNumber
- the line number of the sourcecolumnNumber
- the columnNumber of the source (may be zero if
unknown)lineSource
- the source of the line containing the error (may be
null if unknown)