Class RunErrorException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.apache.maven.shared.scriptinterpreter.RunFailureException
-
- org.apache.maven.shared.scriptinterpreter.RunErrorException
-
- All Implemented Interfaces:
java.io.Serializable
public class RunErrorException extends RunFailureException
Signals an error in a sub build run by the Invoker Plugin. This can be caused by a selector/pre-build script throwing an exception or an error in forking the Maven build itself.- Version:
- $Id: RunErrorException.java 1199475 2011-11-08 21:51:13Z olamy $
- 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 RunErrorException(java.lang.String message, java.lang.String type, java.lang.Throwable cause)
Creates a new exception with the specified detail message.
-
Method Summary
-
Methods inherited from class org.apache.maven.shared.scriptinterpreter.RunFailureException
getType
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
The serial version identifier for this class.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
RunErrorException
public RunErrorException(java.lang.String message, java.lang.String type, java.lang.Throwable cause)
Creates a new exception with the specified detail message.- Parameters:
message
- The detail message, may benull
.type
- The type of build failure, may not benull
.cause
- The cause of the build error.
-
-