Spring Web Flow

org.springframework.webflow.core
Class FlowException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.springframework.webflow.core.FlowException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
FlowBuilderException, FlowDefinitionConstructionException, FlowExecutionException, FlowExecutionRepositoryException, FlowModelBuilderException, NoSuchFlowDefinitionException, NoSuchFlowModelException

public abstract class FlowException
extends java.lang.RuntimeException

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:
Serialized Form

Constructor Summary
FlowException(java.lang.String msg)
          Creates a new flow exception.
FlowException(java.lang.String msg, java.lang.Throwable cause)
          Creates a new flow exception.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

FlowException

public FlowException(java.lang.String msg,
                     java.lang.Throwable cause)
Creates a new flow exception.

Parameters:
msg - the message
cause - the cause

FlowException

public FlowException(java.lang.String msg)
Creates a new flow exception.

Parameters:
msg - the message

Spring Web Flow