Package bsh
Class EvalError
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- bsh.EvalError
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ParseException,TargetError
public class EvalError extends Exception
EvalError indicates that we cannot continue evaluating the script or the script has thrown an exception. EvalError may be thrown for a script syntax error, an evaluation error such as referring to an undefined variable, an internal error.- See Also:
TargetError, Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetErrorLineNumber()StringgetErrorSourceFile()StringgetErrorText()StringgetMessage()StringgetScriptStackTrace()protected voidprependMessage(String s)Prepend the message if it is non-null.voidreThrow(String msg)Re-throw the error, prepending the specified message.voidsetMessage(String s)StringtoString()Print the error with line number and stack trace.-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
-
-
-
Method Detail
-
toString
public String toString()
Print the error with line number and stack trace.
-
reThrow
public void reThrow(String msg) throws EvalError
Re-throw the error, prepending the specified message.- Throws:
EvalError
-
getErrorText
public String getErrorText()
-
getErrorLineNumber
public int getErrorLineNumber()
-
getErrorSourceFile
public String getErrorSourceFile()
-
getScriptStackTrace
public String getScriptStackTrace()
-
getMessage
public String getMessage()
- Overrides:
getMessagein classThrowable- See Also:
for a full display of the information
-
setMessage
public void setMessage(String s)
-
prependMessage
protected void prependMessage(String s)
Prepend the message if it is non-null.
-
-