Class ActionExecutionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.webflow.core.FlowException
org.springframework.webflow.execution.FlowExecutionException
org.springframework.webflow.execution.ActionExecutionException
- All Implemented Interfaces:
Serializable
Thrown if an unhandled exception occurs when an action is executed. Typically wraps another exception noting the root
cause failure. The root cause may be checked or unchecked.
- Author:
- Keith Donald, Erwin Vervaet
- See Also:
-
Constructor Summary
ConstructorDescriptionActionExecutionException
(String flowId, String stateId, Action action, AttributeMap<Object> executionAttributes, String message, Throwable cause) Create a new action execution exception.ActionExecutionException
(String flowId, String stateId, Action action, AttributeMap<Object> executionAttributes, Throwable cause) Create a new action execution exception. -
Method Summary
Methods inherited from class org.springframework.webflow.execution.FlowExecutionException
getFlowId, getStateId
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ActionExecutionException
public ActionExecutionException(String flowId, String stateId, Action action, AttributeMap<Object> executionAttributes, Throwable cause) Create a new action execution exception.- Parameters:
flowId
- the current flowstateId
- the current state (may be null)action
- the action that generated an unrecoverable exceptionexecutionAttributes
- action execution properties that may have contributed to this failurecause
- the underlying cause
-
ActionExecutionException
public ActionExecutionException(String flowId, String stateId, Action action, AttributeMap<Object> executionAttributes, String message, Throwable cause) Create a new action execution exception.- Parameters:
flowId
- the current flowstateId
- the current state (may be null)action
- the action that generated an unrecoverable exceptionexecutionAttributes
- action execution properties that may have contributed to this failuremessage
- a descriptive messagecause
- the underlying cause
-