org.springframework.webflow.execution
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
public class ActionExecutionException
- extends FlowExecutionException
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:
Action
,
Serialized Form
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
ActionExecutionException
public ActionExecutionException(String flowId,
String stateId,
Action action,
AttributeMap 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 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