org.springframework.webflow.execution.repository.support
Class InvalidContinuationIdException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.springframework.core.NestedRuntimeException
                  extended by org.springframework.webflow.core.FlowException
                      extended by org.springframework.webflow.execution.repository.FlowExecutionRepositoryException
                          extended by org.springframework.webflow.execution.repository.support.InvalidContinuationIdException
All Implemented Interfaces:
java.io.Serializable

public class InvalidContinuationIdException
extends FlowExecutionRepositoryException

Thrown when no flow execution continuation exists with the provided id. This might occur if the continuation has expired or was explictly invalidated but a client's browser page cache still references it.

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

Constructor Summary
InvalidContinuationIdException(java.io.Serializable continuationId)
          Creates an invalid continuation id exception.
 
Method Summary
 java.io.Serializable getContinuationId()
          Returns the continuation id.
 
Methods inherited from class org.springframework.core.NestedRuntimeException
contains, getMessage, getMostSpecificCause, getRootCause
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, 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

InvalidContinuationIdException

public InvalidContinuationIdException(java.io.Serializable continuationId)
Creates an invalid continuation id exception.

Parameters:
continuationId - the invalid continuation id
Method Detail

getContinuationId

public java.io.Serializable getContinuationId()
Returns the continuation id.



Copyright © 2009 Spring Framework. All Rights Reserved.