Class ServletRequestBindingException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
MissingRequestValueException, 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
See Also:
  • Constructor Details

    • ServletRequestBindingException

      public ServletRequestBindingException(String msg)
      Constructor for ServletRequestBindingException.
      Parameters:
      msg - the detail message
    • ServletRequestBindingException

      public ServletRequestBindingException(String msg, Throwable cause)
      Constructor for ServletRequestBindingException.
      Parameters:
      msg - the detail message
      cause - the root cause