Spring Web Flow

org.springframework.webflow.execution.repository
Class FlowExecutionRepositoryException

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
                  extended by org.springframework.webflow.execution.repository.FlowExecutionRepositoryException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
BadlyFormattedFlowExecutionKeyException, FlowExecutionAccessException, SnapshotCreationException, SnapshotNotFoundException, SnapshotUnmarshalException

public abstract class FlowExecutionRepositoryException
extends FlowException

The root of the FlowExecutionRepository exception hierarchy. Indicates a problem occured either saving, restoring, or invalidating a managed flow execution.

Author:
Erwin Vervaet, Keith Donald
See Also:
Serialized Form

Constructor Summary
FlowExecutionRepositoryException(java.lang.String message)
          Creates a new flow execution repository exception.
FlowExecutionRepositoryException(java.lang.String message, java.lang.Throwable cause)
          Creates a new flow execution repository 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

FlowExecutionRepositoryException

public FlowExecutionRepositoryException(java.lang.String message)
Creates a new flow execution repository exception.

Parameters:
message - a descriptive message

FlowExecutionRepositoryException

public FlowExecutionRepositoryException(java.lang.String message,
                                        java.lang.Throwable cause)
Creates a new flow execution repository exception.

Parameters:
message - a descriptive message
cause - the root cause of the problem

Spring Web Flow