| org.springframework.webflow.execution.FlowExecutionException org.springframework.webflow.engine.NoMatchingTransitionException
NoMatchingTransitionException | public class NoMatchingTransitionException extends FlowExecutionException (Code) | | Thrown when no transition can be matched given the occurence of an event in
the context of a flow execution request.
Typically this happens because there is no "handler" transition for the last
event that occured.
author: Keith Donald author: Erwin Vervaet |
Method Summary | |
public Event | getEvent() Returns the event for the current request that did not trigger any
supported transition. |
NoMatchingTransitionException | public NoMatchingTransitionException(String flowId, String stateId, Event event, String message)(Code) | | Create a new no matching transition exception.
Parameters: flowId - the current flow Parameters: stateId - the state that could not be transitioned out of Parameters: event - the event that occured that could not be matched to atransition Parameters: message - the message |
NoMatchingTransitionException | public NoMatchingTransitionException(String flowId, String stateId, Event event, String message, Throwable cause)(Code) | | Create a new no matching transition exception.
Parameters: flowId - the current flow Parameters: stateId - the state that could not be transitioned out of Parameters: event - the event that occured that could not be matched to atransition Parameters: message - the message Parameters: cause - the underlying cause |
getEvent | public Event getEvent()(Code) | | Returns the event for the current request that did not trigger any
supported transition.
|
|
|