Package org.springframework.web.bind
Class MissingServletRequestParameterException
java.lang.Object
java.lang.Throwable
java.lang.Exception
jakarta.servlet.ServletException
org.springframework.web.bind.ServletRequestBindingException
org.springframework.web.bind.MissingRequestValueException
org.springframework.web.bind.MissingServletRequestParameterException
- All Implemented Interfaces:
Serializable
,ErrorResponse
ServletRequestBindingException
subclass that indicates a missing parameter.- Since:
- 2.0.2
- Author:
- Juergen Hoeller
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.springframework.web.ErrorResponse
ErrorResponse.Builder
-
Constructor Summary
ConstructorDescriptionMissingServletRequestParameterException
(String parameterName, String parameterType) Constructor for MissingServletRequestParameterException.MissingServletRequestParameterException
(String parameterName, String parameterType, boolean missingAfterConversion) Deprecated, for removal: This API element is subject to removal in a future version.MissingServletRequestParameterException
(String parameterName, MethodParameter parameter, boolean missingAfterConversion) Constructor with aMethodParameter
instead of a String parameterType. -
Method Summary
Modifier and TypeMethodDescriptionReturn the targetMethodParameter
if the exception was raised for a controller method argument.final String
Return the name of the offending parameter.final String
Return the expected type of the offending parameter.Methods inherited from class org.springframework.web.bind.MissingRequestValueException
isMissingAfterConversion
Methods inherited from class org.springframework.web.bind.ServletRequestBindingException
getBody, getDetailMessageArguments, getDetailMessageCode, getStatusCode
Methods inherited from class jakarta.servlet.ServletException
getRootCause
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.springframework.web.ErrorResponse
getDetailMessageArguments, getHeaders, getTitleMessageCode, getTypeMessageCode, updateAndGetBody
-
Constructor Details
-
MissingServletRequestParameterException
Constructor for MissingServletRequestParameterException.- Parameters:
parameterName
- the name of the missing parameterparameterType
- the expected type of the missing parameter
-
MissingServletRequestParameterException
public MissingServletRequestParameterException(String parameterName, MethodParameter parameter, boolean missingAfterConversion) Constructor with aMethodParameter
instead of a String parameterType.- Parameters:
parameterName
- the name of the missing parameterparameter
- the target method parameter for the missing valuemissingAfterConversion
- whether the value became null after conversion- Since:
- 6.1
-
MissingServletRequestParameterException
@Deprecated(since="6.1", forRemoval=true) public MissingServletRequestParameterException(String parameterName, String parameterType, boolean missingAfterConversion) Deprecated, for removal: This API element is subject to removal in a future version.Constructor for use when a value was present but converted tonull
.- Parameters:
parameterName
- the name of the missing parameterparameterType
- the expected type of the missing parametermissingAfterConversion
- whether the value became null after conversion- Since:
- 5.3.6
-
-
Method Details
-
getMessage
- Overrides:
getMessage
in classThrowable
-
getParameterName
Return the name of the offending parameter. -
getParameterType
Return the expected type of the offending parameter. -
getMethodParameter
Return the targetMethodParameter
if the exception was raised for a controller method argument.- Since:
- 6.1
-
MissingServletRequestParameterException(String, MethodParameter, boolean)