Class ScriptEvaluationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.apache.maven.shared.scriptinterpreter.ScriptException
org.apache.maven.shared.scriptinterpreter.ScriptEvaluationException
- All Implemented Interfaces:
Serializable
Signals an error during parsing/evaluation of a script. This can either be a syntax error in the script itself or an
exception triggered by the methods it invoked.
- Author:
- Benjamin Bentmann
- See Also:
-
Constructor Summary
ConstructorDescriptionScriptEvaluationException
(String message, Throwable cause) Creates a new exception with the specified message and 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
-
ScriptEvaluationException
Creates a new exception with the specified message and cause.- Parameters:
message
- The message, may benull
.cause
- The cause, may benull
.- Since:
- 1.3
-