Spring Web Flow

org.springframework.webflow.engine
Class FlowOutputMappingException

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

public class FlowOutputMappingException
extends FlowAttributeMappingException

Thrown when flow output mapping fails.

Author:
Keith Donald
See Also:
Serialized Form

Constructor Summary
FlowOutputMappingException(java.lang.String flowId, MappingResults results)
          Creates a new flow output mapping exception.
FlowOutputMappingException(java.lang.String flowId, java.lang.String stateId, MappingResults results)
          Creates a new flow output 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

FlowOutputMappingException

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

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

FlowOutputMappingException

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

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

Spring Web Flow