Package org.apache.maven.api.cli
Class ExecutorException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.maven.api.cli.ExecutorException
- All Implemented Interfaces:
 Serializable
Represents an exception that occurs during the execution of a Maven build or command.
 This exception is typically thrown when there are errors during the execution of a Maven
 process, such as wrong cwd, non-existent installation directory, or other runtime issues.
- Since:
 - 4.0.0
 - See Also:
 
- 
Constructor Summary
ConstructorsConstructorDescriptionExecutorException(String message) Constructs a newInvokerExceptionwith the specified detail message.ExecutorException(String message, Throwable cause) Constructs a newInvokerExceptionwith the specified detail 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
- 
ExecutorException
Constructs a newInvokerExceptionwith the specified detail message.- Parameters:
 message- the detail message explaining the cause of the exception
 - 
ExecutorException
Constructs a newInvokerExceptionwith the specified detail message and cause.- Parameters:
 message- the detail message explaining the cause of the exceptioncause- the underlying cause of the exception
 
 -