Spring Web Flow

org.springframework.webflow.execution.repository
Class FlowExecutionRestorationFailureException

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
                      extended by org.springframework.webflow.execution.repository.FlowExecutionAccessException
                          extended by org.springframework.webflow.execution.repository.FlowExecutionRestorationFailureException
All Implemented Interfaces:
java.io.Serializable

public class FlowExecutionRestorationFailureException
extends FlowExecutionAccessException

Thrown when the flow execution with the persistent identifier provided could not be restored.

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

Constructor Summary
FlowExecutionRestorationFailureException(FlowExecutionKey flowExecutionKey, java.lang.Exception cause)
          Creates a new flow execution restoration failure exception.
 
Method Summary
 
Methods inherited from class org.springframework.webflow.execution.repository.FlowExecutionAccessException
getFlowExecutionKey
 
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

FlowExecutionRestorationFailureException

public FlowExecutionRestorationFailureException(FlowExecutionKey flowExecutionKey,
                                                java.lang.Exception cause)
Creates a new flow execution restoration failure exception.

Parameters:
flowExecutionKey - the key of the execution that could not be restored
cause - the root cause of the restoration failure

Spring Web Flow