com.ervacon.springframework.web.servlet.mvc.webflow
Class WebFlowException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byjava.lang.RuntimeException
              extended byorg.springframework.core.NestedRuntimeException
                  extended bycom.ervacon.springframework.web.servlet.mvc.webflow.WebFlowException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
NavigationException

public class WebFlowException
extends org.springframework.core.NestedRuntimeException

Exception that is generated when a web flow encounters an internal problem. This kind of exception is typically caused by programming errors or configuration problems.

Author:
Erwin Vervaet
See Also:
Serialized Form

Constructor Summary
WebFlowException(java.lang.String msg)
          Create a new web flow exception.
WebFlowException(java.lang.String msg, java.lang.Throwable ex)
          Create a new web flow exception caused by another problem.
 
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
 

Constructor Detail

WebFlowException

public WebFlowException(java.lang.String msg)

Create a new web flow exception.

Parameters:
msg - the detail message

WebFlowException

public WebFlowException(java.lang.String msg,
                        java.lang.Throwable ex)

Create a new web flow exception caused by another problem.

Parameters:
msg - the detail message
ex - the nested exception