org.springframework.webflow.execution
Class NoSuchFlowExecutionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.core.NestedRuntimeException
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
|
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 |
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 foundcause - the underlying cause of this exception
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.