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.RequestMapping.params()
,
Serialized FormConstructor and Description |
---|
UnsatisfiedServletRequestParameterException(String[] paramConditions,
Map<String,String[]> actualParams)
Create a new UnsatisfiedServletRequestParameterException.
|
Modifier and Type | Method and Description |
---|---|
Map<String,String[]> |
getActualParams()
Return the actual parameter Map associated with the ServletRequest.
|
String |
getMessage()
Return the detail message, including the message from the nested exception
if there is one.
|
String[] |
getParamConditions()
Return the parameter conditions that have been violated.
|
getRootCause
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
public UnsatisfiedServletRequestParameterException(String[] paramConditions, Map<String,String[]> actualParams)
paramConditions
- the parameter conditions that have been violatedactualParams
- the actual parameter Map associated with the ServletRequestpublic String getMessage()
NestedServletException
getMessage
in class NestedServletException
public final String[] getParamConditions()
RequestMapping.params()
public final Map<String,String[]> getActualParams()
ServletRequest.getParameterMap()