Class ExecutionWarningException

All Implemented Interfaces:
Serializable

public final class ExecutionWarningException extends SchedulerException
Exception used by the Executable interface to indicate a warning condition was encountered during execution.
See Also:
  • Constructor Details

    • ExecutionWarningException

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

      public ExecutionWarningException(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.
    • ExecutionWarningException

      public ExecutionWarningException(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.
    • ExecutionWarningException

      public ExecutionWarningException(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.