Class ScriptException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.apache.maven.shared.scriptinterpreter.ScriptException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ScriptEvaluationException
,ScriptReturnException
Common errors during script running.
- Since:
- 1.3
- Author:
- Slawomir Jaranowski
- See Also:
-
Constructor Summary
ConstructorDescriptionScriptException
(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
-
ScriptException
Creates a new exception with the specified message and cause.- Parameters:
message
- The message, may benull
.cause
- The cause, may benull
.
-