Class UnsatisfiedServletRequestParameterException

All Implemented Interfaces:
Serializable, ErrorResponse

public class UnsatisfiedServletRequestParameterException extends ServletRequestBindingException
ServletRequestBindingException subclass that indicates an unsatisfied parameter condition, as typically expressed using an @RequestMapping annotation at the @Controller type level.
Since:
3.0
Author:
Juergen Hoeller
See Also:
  • Constructor Details

    • UnsatisfiedServletRequestParameterException

      public UnsatisfiedServletRequestParameterException(String[] paramConditions, Map<String,String[]> actualParams)
      Create a new UnsatisfiedServletRequestParameterException.
      Parameters:
      paramConditions - the parameter conditions that have been violated
      actualParams - the actual parameter Map associated with the ServletRequest
    • UnsatisfiedServletRequestParameterException

      public UnsatisfiedServletRequestParameterException(List<String[]> paramConditions, Map<String,String[]> actualParams)
      Create a new UnsatisfiedServletRequestParameterException.
      Parameters:
      paramConditions - all sets of parameter conditions that have been violated
      actualParams - the actual parameter Map associated with the ServletRequest
      Since:
      4.2
  • Method Details