Class ExecutionErrorException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
ExecutionBizErrorException, ExecutionManualRecoveryException, ExecutionSuspendException

public class ExecutionErrorException extends SchedulerException
Exception used by the Executable interface to indicate an error condition was encountered during execution.
See Also:
  • Constructor Details

    • ExecutionErrorException

      public ExecutionErrorException()
      Constructs a new exception with null detail message. The cause is not initialized.
    • ExecutionErrorException

      public ExecutionErrorException(String message)
      Constructs a new exception with the specified detail message. The cause is not initialized.
      Parameters:
      message - the detail message. This can be retrieved by the getMessage method.
    • ExecutionErrorException

      public ExecutionErrorException(String message, Throwable cause)
      Constructs a new exception with the specified detail message and cause.
      Parameters:
      message - the detail message. This can be retrieved by the getMessage method.
      cause - the cause. This can be retrieved by the getCause method.
    • ExecutionErrorException

      public ExecutionErrorException(Throwable cause)
      Constructs a new exception with the specified cause. The detail message will be null.
      Parameters:
      cause - the cause. This can be retrieved by the getCause method.