Package org.opencastproject.workflow.api
Class WorkflowOperationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.opencastproject.workflow.api.WorkflowOperationException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
WorkflowOperationAbortedException
Thrown when a
WorkflowOperationInstance fails to run.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionWorkflowOperationException(String message) Constructs a newWorkflowOperationExceptionwith a message, but no root cause.WorkflowOperationException(String message, Throwable cause) Constructs a newWorkflowOperationExceptionwith a message and a root cause.Constructs a newWorkflowOperationExceptionwith a root cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
WorkflowOperationException
Constructs a newWorkflowOperationExceptionwith a message and a root cause.- Parameters:
message- The message describing what went wrongcause- The exception that triggered this problem
-
WorkflowOperationException
Constructs a newWorkflowOperationExceptionwith a message, but no root cause.- Parameters:
message- The message describing what went wrong
-
WorkflowOperationException
Constructs a newWorkflowOperationExceptionwith a root cause.- Parameters:
cause- The exception that caused this problem
-