org.springframework.web.bind
Class ServletRequestBindingException

java.lang.Object
  extended by ServletException
      extended by org.springframework.web.util.NestedServletException
          extended by org.springframework.web.bind.ServletRequestBindingException
Direct Known Subclasses:
MissingServletRequestParameterException, UnsatisfiedServletRequestParameterException

public class ServletRequestBindingException
extends NestedServletException

Fatal binding exception, thrown when we want to treat binding exceptions as unrecoverable.

Extends ServletException for convenient throwing in any Servlet resource (such as a Filter), and NestedServletException for proper root cause handling (as the plain ServletException doesn't expose its root cause at all).

Author:
Rod Johnson, Juergen Hoeller

Constructor Summary
ServletRequestBindingException(java.lang.String msg)
          Constructor for ServletRequestBindingException.
ServletRequestBindingException(java.lang.String msg, java.lang.Throwable cause)
          Constructor for ServletRequestBindingException.
 
Method Summary
 
Methods inherited from class org.springframework.web.util.NestedServletException
getMessage
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ServletRequestBindingException

public ServletRequestBindingException(java.lang.String msg)
Constructor for ServletRequestBindingException.

Parameters:
msg - the detail message

ServletRequestBindingException

public ServletRequestBindingException(java.lang.String msg,
                                      java.lang.Throwable cause)
Constructor for ServletRequestBindingException.

Parameters:
msg - the detail message
cause - the root cause