Example usage for Java javax.script ScriptException fields, constructors, methods, implement or subclass
The text is from its open source code.
ScriptException(String s) Creates a ScriptException with a String to be used in its message. | |
ScriptException(Exception e) Creates a ScriptException wrapping an Exception thrown by an underlying interpreter. | |
ScriptException(String message, String fileName, int lineNumber, int columnNumber)ScriptException constructor specifying message, filename, line number and column number. | |
ScriptException(String message, String fileName, int lineNumber) Creates a ScriptException with message, filename and linenumber to be used in error messages. |
Throwable | getCause() Returns the cause of this throwable or null if the cause is nonexistent or unknown. |
int | getColumnNumber() Get the column number on which an error occurred. |
int | getLineNumber() Get the line number on which an error occurred. |
String | getLocalizedMessage() Creates a localized description of this throwable. |
String | getMessage() Returns a message containing the String passed to a constructor as well as line and column numbers and filename if any of these are known. |
Throwable | initCause(Throwable cause) Initializes the cause of this throwable to the specified value. |
void | printStackTrace() Prints this throwable and its backtrace to the standard error stream. |
void | printStackTrace(PrintStream s) Prints this throwable and its backtrace to the specified print stream. |
String | toString() Returns a short description of this throwable. |