Spring Web Flow

org.springframework.webflow.engine
Class FlowInputMappingException

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.FlowExecutionException
                      extended by org.springframework.webflow.engine.FlowAttributeMappingException
                          extended by org.springframework.webflow.engine.FlowInputMappingException
All Implemented Interfaces:
java.io.Serializable

public class FlowInputMappingException
extends FlowAttributeMappingException

Thrown when flow input mapping fails.

Author:
Keith Donald
See Also:
Serialized Form

Constructor Summary
FlowInputMappingException(java.lang.String flowId, MappingResults results)
          Creates a new flow input mapping exception.
FlowInputMappingException(java.lang.String flowId, java.lang.String stateId, MappingResults results)
          Creates a new flow input mapping exception.
 
Method Summary
 
Methods inherited from class org.springframework.webflow.engine.FlowAttributeMappingException
getMappingResults
 
Methods inherited from class org.springframework.webflow.execution.FlowExecutionException
getFlowId, getStateId
 
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

FlowInputMappingException

public FlowInputMappingException(java.lang.String flowId,
                                 MappingResults results)
Creates a new flow input mapping exception.

Parameters:
flowId - the id of the flow where input mapping failed
results - the mapping errors with errors

FlowInputMappingException

public FlowInputMappingException(java.lang.String flowId,
                                 java.lang.String stateId,
                                 MappingResults results)
Creates a new flow input mapping exception.

Parameters:
flowId - the id of the flow where input mapping failed
stateId - the state where input mapping failed
results - the mapping errors with errors

Spring Web Flow