Class FlowExecutionAccessException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.webflow.core.FlowException
org.springframework.webflow.execution.repository.FlowExecutionRepositoryException
org.springframework.webflow.execution.repository.FlowExecutionAccessException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
FlowExecutionRestorationFailureException
,NoSuchFlowExecutionException
,PermissionDeniedFlowExecutionAccessException
Base class for exceptions that indicate a flow execution could not be accessed within a repository.
- Author:
- Keith Donald, Erwin Vervaet
- See Also:
-
Constructor Summary
ConstructorDescriptionFlowExecutionAccessException
(FlowExecutionKey flowExecutionKey, String message) Creates a new flow execution access exception.FlowExecutionAccessException
(FlowExecutionKey flowExecutionKey, String message, Exception cause) Creates a new flow execution access exception. -
Method Summary
Modifier and TypeMethodDescriptionReturns key of the flow execution that could not be accessed.Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
FlowExecutionAccessException
Creates a new flow execution access exception.- Parameters:
flowExecutionKey
- the key of the execution that could not be accessedmessage
- a descriptive message
-
FlowExecutionAccessException
public FlowExecutionAccessException(FlowExecutionKey flowExecutionKey, String message, Exception cause) Creates a new flow execution access exception.- Parameters:
flowExecutionKey
- the key of the execution that could not be accessedmessage
- a descriptive messagecause
- the root cause of the access failure
-
-
Method Details
-
getFlowExecutionKey
Returns key of the flow execution that could not be accessed.
-