Class ScriptEvaluationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
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.
- Version:
- $Id: ScriptEvaluationException.java 1194928 2011-10-29 16:37:19Z olamy $
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final long
The serial version identifier for this class. -
Constructor Summary
ConstructorsConstructorDescriptionCreates a new exception with the specified cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
serialVersionUID
private static final long serialVersionUIDThe serial version identifier for this class.- See Also:
-
-
Constructor Details
-
ScriptEvaluationException
Creates a new exception with the specified cause.- Parameters:
cause
- The cause, may benull
.
-