Class FlowExecutionRepositoryException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.webflow.core.FlowException
org.springframework.webflow.execution.repository.FlowExecutionRepositoryException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
BadlyFormattedFlowExecutionKeyException
,FlowExecutionAccessException
,SnapshotCreationException
,SnapshotNotFoundException
,SnapshotUnmarshalException
The root of the
FlowExecutionRepository
exception hierarchy. Indicates a problem occured either saving,
restoring, or invalidating a managed flow execution.- Author:
- Erwin Vervaet, Keith Donald
- See Also:
-
Constructor Summary
ConstructorDescriptionFlowExecutionRepositoryException
(String message) Creates a new flow execution repository exception.FlowExecutionRepositoryException
(String message, Throwable cause) Creates a new flow execution repository 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
-
FlowExecutionRepositoryException
Creates a new flow execution repository exception.- Parameters:
message
- a descriptive message
-
FlowExecutionRepositoryException
Creates a new flow execution repository exception.- Parameters:
message
- a descriptive messagecause
- the root cause of the problem
-