Package org.springframework.web.bind
Class MissingRequestValueException
java.lang.Object
java.lang.Throwable
java.lang.Exception
jakarta.servlet.ServletException
org.springframework.web.bind.ServletRequestBindingException
org.springframework.web.bind.MissingRequestValueException
- All Implemented Interfaces:
Serializable
,ErrorResponse
- Direct Known Subclasses:
MissingMatrixVariableException
,MissingPathVariableException
,MissingRequestCookieException
,MissingRequestHeaderException
,MissingServletRequestParameterException
Base class for
ServletRequestBindingException
exceptions that could
not bind because the request value is required but is either missing or
otherwise resolves to null
after conversion.- Since:
- 5.3.6
- Author:
- Rossen Stoyanchev
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.springframework.web.ErrorResponse
ErrorResponse.Builder
-
Constructor Summary
ModifierConstructorDescriptionConstructor with a message only.MissingRequestValueException
(String msg, boolean missingAfterConversion) Constructor with a message and a flag that indicates whether a value was present but becamenull
after conversion.protected
MissingRequestValueException
(String msg, boolean missingAfterConversion, String messageDetailCode, Object[] messageDetailArguments) Constructor with a givenProblemDetail
, and aMessageSource
code and arguments to resolve the detail message with. -
Method Summary
Modifier and TypeMethodDescriptionboolean
Whether the request value was present but converted tonull
, e.g.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, getMessage, 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, updateAndGetBody
-
Constructor Details
-
MissingRequestValueException
Constructor with a message only. -
MissingRequestValueException
Constructor with a message and a flag that indicates whether a value was present but becamenull
after conversion. -
MissingRequestValueException
protected MissingRequestValueException(String msg, boolean missingAfterConversion, @Nullable String messageDetailCode, @Nullable Object[] messageDetailArguments) Constructor with a givenProblemDetail
, and aMessageSource
code and arguments to resolve the detail message with.- Since:
- 6.0
-
-
Method Details
-
isMissingAfterConversion
public boolean isMissingAfterConversion()Whether the request value was present but converted tonull
, e.g. viaorg.springframework.core.convert.support.IdToEntityConverter
.
-