Class WorkflowOperationException

java.lang.Object
java.lang.Throwable
java.lang.Exception
org.opencastproject.workflow.api.WorkflowOperationException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
WorkflowOperationAbortedException

public class WorkflowOperationException extends Exception
Thrown when a WorkflowOperationInstance fails to run.
See Also:
  • Constructor Details

    • WorkflowOperationException

      public WorkflowOperationException(String message, Throwable cause)
      Constructs a new WorkflowOperationException with a message and a root cause.
      Parameters:
      message - The message describing what went wrong
      cause - The exception that triggered this problem
    • WorkflowOperationException

      public WorkflowOperationException(String message)
      Constructs a new WorkflowOperationException with a message, but no root cause.
      Parameters:
      message - The message describing what went wrong
    • WorkflowOperationException

      public WorkflowOperationException(Throwable cause)
      Constructs a new WorkflowOperationException with a root cause.
      Parameters:
      cause - The exception that caused this problem