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:
java.io.Serializable
public class ScriptEvaluationException extends ScriptException
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.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
The serial version identifier for this class.
-
Constructor Summary
Constructors Constructor Description ScriptEvaluationException(java.lang.String message, java.lang.Throwable cause)
Creates a new exception with the specified message and cause.ScriptEvaluationException(java.lang.Throwable cause)
Creates a new exception with the specified cause.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
The serial version identifier for this class.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ScriptEvaluationException
ScriptEvaluationException(java.lang.Throwable cause)
Creates a new exception with the specified cause.- Parameters:
cause
- The cause, may benull
.
-
ScriptEvaluationException
public ScriptEvaluationException(java.lang.String message, java.lang.Throwable cause)
Creates a new exception with the specified message and cause.- Parameters:
message
- The message, may benull
.cause
- The cause, may benull
.- Since:
- 1.3
-
-