org.springframework.webflow.execution
Class NoSuchFlowExecutionException

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

public class NoSuchFlowExecutionException
extends org.springframework.core.NestedRuntimeException

Thrown when no flow execution exists by the specified flowExecutionId. This might occur if the flow execution timed out, but a client view still references it.

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

Constructor Summary
NoSuchFlowExecutionException(java.io.Serializable flowExecutionId)
          Create a new flow execution lookup exception.
NoSuchFlowExecutionException(java.io.Serializable flowExecutionId, java.lang.Throwable cause)
          Create a new flow execution lookup exception.
 
Method Summary
 java.io.Serializable getFlowExecutionId()
          Returns the id of the flow execution that was not found.
 
Methods inherited from class org.springframework.core.NestedRuntimeException
contains, getCause, getMessage, printStackTrace, printStackTrace
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getStackTrace, initCause, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

NoSuchFlowExecutionException

public NoSuchFlowExecutionException(java.io.Serializable flowExecutionId)
Create a new flow execution lookup exception.

Parameters:
flowExecutionId - id of the flow execution that cannot be found

NoSuchFlowExecutionException

public NoSuchFlowExecutionException(java.io.Serializable flowExecutionId,
                                    java.lang.Throwable cause)
Create a new flow execution lookup exception.

Parameters:
flowExecutionId - id of the flow execution that cannot be found
cause - the underlying cause of this exception
Method Detail

getFlowExecutionId

public java.io.Serializable getFlowExecutionId()
Returns the id of the flow execution that was not found.

Returns:
the flow execution id


Copyright © 2005. All Rights Reserved.