Spring Web Flow

org.springframework.webflow.engine
Class ViewRenderingException

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

public class ViewRenderingException
extends FlowExecutionException

Thrown if a IO exception was thrown during view rendering.

Author:
Keith Donald
See Also:
Serialized Form

Constructor Summary
ViewRenderingException(java.lang.String flowId, java.lang.String stateId, View view, java.lang.Throwable cause)
          Create a new action execution exception.
 
Method Summary
 
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

ViewRenderingException

public ViewRenderingException(java.lang.String flowId,
                              java.lang.String stateId,
                              View view,
                              java.lang.Throwable cause)
Create a new action execution exception.

Parameters:
flowId - the current flow
stateId - the current state (may be null)
view - the view that generated an unrecoverable exception
cause - the underlying cause

Spring Web Flow