Package org.fugerit.java.script.helper
Class ScriptException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.fugerit.java.script.helper.ScriptException
- All Implemented Interfaces:
Serializable
Exception used by
EvalScript
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDefault constructorScriptException
(String message) Constructor using only a messageScriptException
(String message, Throwable cause) Constructor using message and causeScriptException
(Throwable cause) Constructor using only the cause -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ScriptException
public ScriptException()Default constructor -
ScriptException
Constructor using only the cause- Parameters:
cause
- the cause of this exception
-
ScriptException
Constructor using only a message- Parameters:
message
- the message of this exception
-
ScriptException
Constructor using message and cause- Parameters:
message
- the message of this exceptioncause
- the cause of this exception
-