Spring Web Flow

org.springframework.webflow.definition.registry
Class FlowDefinitionConstructionException

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.definition.registry.FlowDefinitionConstructionException
All Implemented Interfaces:
java.io.Serializable

public class FlowDefinitionConstructionException
extends FlowException

Thrown when a flow definition was found during a lookup operation but could not be constructed.

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

Constructor Summary
FlowDefinitionConstructionException(java.lang.String flowDefinitionId, java.lang.Throwable cause)
          Creates an exception indicating a flow definition could not be constructed.
 
Method Summary
 java.lang.String getFlowDefinitionId()
          Returns the id of the flow definition that could not be constructed.
 
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

FlowDefinitionConstructionException

public FlowDefinitionConstructionException(java.lang.String flowDefinitionId,
                                           java.lang.Throwable cause)
Creates an exception indicating a flow definition could not be constructed.

Parameters:
flowDefinitionId - the flow definition identifier
cause - the underlying cause of the exception
Method Detail

getFlowDefinitionId

public java.lang.String getFlowDefinitionId()
Returns the id of the flow definition that could not be constructed.

Returns:
the flow id

Spring Web Flow