Package org.springframework.webflow.core
Class FlowException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.webflow.core.FlowException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
FlowBuilderException
,FlowDefinitionConstructionException
,FlowExecutionException
,FlowExecutionRepositoryException
,FlowModelBuilderException
,NoSuchFlowDefinitionException
,NoSuchFlowModelException
Root class for exceptions thrown by the Spring Web Flow system. All other exceptions within the system should be
assignable to this class.
- Author:
- Keith Donald, Erwin Vervaet
- See Also:
-
Constructor Summary
ConstructorDescriptionFlowException
(String msg) Creates a new flow exception.FlowException
(String msg, Throwable cause) Creates a new flow 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
-
FlowException
Creates a new flow exception.- Parameters:
msg
- the messagecause
- the cause
-
FlowException
Creates a new flow exception.- Parameters:
msg
- the message
-