Package org.springframework.web.bind
Class MissingRequestValueException
java.lang.Object
java.lang.Throwable
java.lang.Exception
jakarta.servlet.ServletException
org.springframework.web.util.NestedServletException
org.springframework.web.bind.ServletRequestBindingException
org.springframework.web.bind.MissingRequestValueException
- All Implemented Interfaces:
- Serializable
- 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:
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionbooleanWhether the request value was present but converted tonull, e.g.Methods inherited from class org.springframework.web.util.NestedServletExceptiongetMessageMethods inherited from class jakarta.servlet.ServletExceptiongetRootCauseMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
MissingRequestValueException
- 
MissingRequestValueException
 
- 
- 
Method Details- 
isMissingAfterConversionpublic boolean isMissingAfterConversion()Whether the request value was present but converted tonull, e.g. viaorg.springframework.core.convert.support.IdToEntityConverter.
 
-