Class ExecutionBizErrorException

All Implemented Interfaces:
Serializable

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

    • ExecutionBizErrorException

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

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

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

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