Spring Web Flow

org.springframework.webflow.execution.repository.snapshot
Class SnapshotNotFoundException

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.snapshot.SnapshotNotFoundException
All Implemented Interfaces:
java.io.Serializable

public class SnapshotNotFoundException
extends FlowExecutionRepositoryException

Thrown when a flow execution snapshot cannot be found This usually occurs when the client references a snapshot that has since been removed.

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

Constructor Summary
SnapshotNotFoundException(java.io.Serializable snapshotId)
          Creates a snapshot not found exception.
 
Method Summary
 java.io.Serializable getSnapshotId()
          The id of the snapshot that was not found.
 
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

SnapshotNotFoundException

public SnapshotNotFoundException(java.io.Serializable snapshotId)
Creates a snapshot not found exception.

Parameters:
snapshotId - the snapshot id that could not be found
Method Detail

getSnapshotId

public java.io.Serializable getSnapshotId()
The id of the snapshot that was not found.


Spring Web Flow