Class ExecutorException

All Implemented Interfaces:
Serializable

public class ExecutorException extends RuntimeException
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.
See Also:
  • Constructor Details

    • ExecutorException

      public ExecutorException(String message)
      Constructs a new InvokerException with the specified detail message.
      Parameters:
      message - the detail message explaining the cause of the exception
    • ExecutorException

      public ExecutorException(Throwable cause)
      Constructs a new InvokerException with the specified cause.
      Parameters:
      cause - the cause of the exception
    • ExecutorException

      public ExecutorException(String message, Throwable cause)
      Constructs a new InvokerException with the specified detail message and cause.
      Parameters:
      message - the detail message explaining the cause of the exception
      cause - the underlying cause of the exception