Package com.yworkflow.definition
Class WorkflowFactoryException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.yworkflow.common.error.WorkflowException
com.yworkflow.definition.WorkflowFactoryException
- All Implemented Interfaces:
Serializable
Exception thrown when workflow factory operations fail. WorkflowFactoryException is a specialized
exception for errors that occur during workflow definition creation, loading, or management
operations.
- Since:
- 1.0
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a new WorkflowFactoryException with the specified cause.WorkflowFactoryException(String message) Creates a new WorkflowFactoryException with the specified message.WorkflowFactoryException(String message, Exception cause) Creates a new WorkflowFactoryException with the specified message and 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
-
WorkflowFactoryException
Creates a new WorkflowFactoryException with the specified message.- Parameters:
message- the detail message
-
WorkflowFactoryException
Creates a new WorkflowFactoryException with the specified cause.- Parameters:
cause- the cause of the exception
-
WorkflowFactoryException
Creates a new WorkflowFactoryException with the specified message and cause.- Parameters:
message- the detail messagecause- the cause of the exception
-