Package com.yworkflow.common.error
Class WorkflowRuntimeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.yworkflow.common.error.WorkflowRuntimeException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
MissingArgumentException,UnresolvableExtensionException,WorkflowInstanceStoreException
Runtime exception thrown when internal workflow engine issues occur that are not related to
business logic or user input validation. This exception indicates system-level problems that
prevent the workflow engine from functioning properly.
- Since:
- 1.0
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new WorkflowRuntimeException with no detail message.WorkflowRuntimeException(String message) Constructs a new WorkflowRuntimeException with the specified detail message.WorkflowRuntimeException(String message, Throwable cause) Constructs a new WorkflowRuntimeException with the specified detail message and cause.Constructs a new WorkflowRuntimeException with the specified 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
-
WorkflowRuntimeException
public WorkflowRuntimeException()Constructs a new WorkflowRuntimeException with no detail message. -
WorkflowRuntimeException
Constructs a new WorkflowRuntimeException with the specified detail message.- Parameters:
message- the detail message explaining the internal error
-
WorkflowRuntimeException
Constructs a new WorkflowRuntimeException with the specified cause.- Parameters:
cause- the underlying cause of this runtime exception
-
WorkflowRuntimeException
Constructs a new WorkflowRuntimeException with the specified detail message and cause.- Parameters:
message- the detail message explaining the internal errorcause- the underlying cause of this runtime exception
-