public class MissingMatrixVariableException extends MissingRequestValueException
ServletRequestBindingException
subclass that indicates that a matrix
variable expected in the method parameters of an @RequestMapping
method is not present among the matrix variables extracted from the URL.MissingPathVariableException
,
Serialized FormConstructor and Description |
---|
MissingMatrixVariableException(String variableName,
MethodParameter parameter)
Constructor for MissingMatrixVariableException.
|
MissingMatrixVariableException(String variableName,
MethodParameter parameter,
boolean missingAfterConversion)
Constructor for use when a value was present but converted to
null . |
Modifier and Type | Method and Description |
---|---|
String |
getMessage()
Return the detail message, including the message from the nested exception
if there is one.
|
MethodParameter |
getParameter()
Return the method parameter bound to the matrix variable.
|
String |
getVariableName()
Return the expected name of the matrix variable.
|
isMissingAfterConversion
getRootCause
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
public MissingMatrixVariableException(String variableName, MethodParameter parameter)
variableName
- the name of the missing matrix variableparameter
- the method parameterpublic MissingMatrixVariableException(String variableName, MethodParameter parameter, boolean missingAfterConversion)
null
.variableName
- the name of the missing matrix variableparameter
- the method parametermissingAfterConversion
- whether the value became null after conversionpublic String getMessage()
NestedServletException
getMessage
in class NestedServletException
public final String getVariableName()
public final MethodParameter getParameter()