Class ProcessHandlerException

All Implemented Interfaces:
Serializable

public class ProcessHandlerException extends AbstractExecutionException
An exception indicating a problem in one of the handler callbacks for the execution of a process. The cause of the problem will typically be recorded as the cause of this exception.
See Also:
  • Constructor Details

    • ProcessHandlerException

      public ProcessHandlerException()
      Constructs a new ProcessHandlerException instance. The message is left blank (null), and no cause is specified.
    • ProcessHandlerException

      public ProcessHandlerException(String msg)
      Constructs a new ProcessHandlerException instance with an initial message. No cause is specified.
      Parameters:
      msg - the message
    • ProcessHandlerException

      public ProcessHandlerException(Throwable cause)
      Constructs a new ProcessHandlerException instance with an initial cause. If a non-null cause is specified, its message is used to initialize the message of this ProcessHandlerException; otherwise the message is left blank (null).
      Parameters:
      cause - the cause
    • ProcessHandlerException

      public ProcessHandlerException(String msg, Throwable cause)
      Constructs a new ProcessHandlerException instance with an initial message and cause.
      Parameters:
      msg - the message
      cause - the cause