Class WorkflowException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.syncope.core.workflow.api.WorkflowException
- All Implemented Interfaces:
Serializable
Wrapper for all workflow related exceptions. Original exceptions will depend on UserWorkflowAdapter implementation.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionWorkflowException(String message) WorkflowException(String message, Throwable cause) Return a new instance wrapping the original workflow exception, additionally providing a local message.WorkflowException(Throwable cause) Return a new instance wrapping the original workflow exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
WorkflowException
-
WorkflowException
Return a new instance wrapping the original workflow exception.- Parameters:
cause- original workflow exception
-
WorkflowException
Return a new instance wrapping the original workflow exception, additionally providing a local message.- Parameters:
message- local messagecause- original workflow exception
-