Class WorkflowException

java.lang.Object
java.lang.Throwable
java.lang.Exception
org.opencastproject.workflow.api.WorkflowException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
WorkflowDatabaseException, WorkflowParsingException, WorkflowStateException

public class WorkflowException extends Exception
The superclass for any workflow related exceptions.
See Also:
  • Constructor Details

    • WorkflowException

      public WorkflowException()
      Constructs a new workflow exception without a message or a cause.
    • WorkflowException

      public WorkflowException(String message)
      Constructs a new workflow exception with a message.
      Parameters:
      message - the message describing the exception
    • WorkflowException

      public WorkflowException(Throwable cause)
      Constructs a new workflow exception with the throwable causing this exception to be thrown.
      Parameters:
      cause - the cause of this exception
    • WorkflowException

      public WorkflowException(String message, Throwable cause)
      Constructs a new workflow exception with a message and the throwable that caused this exception to be thrown.
      Parameters:
      message - the message describing the exception
      cause - the cause of this exception