Package org.springframework.web.server
Class MissingRequestValueException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.core.NestedRuntimeException
org.springframework.web.ErrorResponseException
org.springframework.web.server.ResponseStatusException
org.springframework.web.server.ServerWebInputException
org.springframework.web.server.MissingRequestValueException
- All Implemented Interfaces:
Serializable
,ErrorResponse
ServerWebInputException
subclass that indicates a missing request
value such as a request header, cookie value, query parameter, etc.- Since:
- 6.0
- Author:
- Rossen Stoyanchev
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.springframework.web.ErrorResponse
ErrorResponse.Builder
-
Constructor Summary
ConstructorDescriptionMissingRequestValueException
(String name, Class<?> type, String label, MethodParameter parameter) -
Method Summary
Methods inherited from class org.springframework.web.server.ServerWebInputException
getMethodParameter
Methods inherited from class org.springframework.web.server.ResponseStatusException
getHeaders, getMessage, getReason, getResponseHeaders
Methods inherited from class org.springframework.web.ErrorResponseException
getBody, getDetailMessageArguments, getDetailMessageCode, getStatusCode, setDetail, setInstance, setTitle, setType
Methods inherited from class org.springframework.core.NestedRuntimeException
contains, getMostSpecificCause, 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, getTitleMessageCode, updateAndGetBody
-
Constructor Details
-
MissingRequestValueException
public MissingRequestValueException(String name, Class<?> type, String label, MethodParameter parameter)
-
-
Method Details
-
getName
Return the name of the missing value, e.g. the name of the missing request header, or cookie, etc. -
getType
Return the target type the value is converted when present. -
getLabel
Return a label that describes the request value, e.g. "request header", "cookie value", etc. Use this to create a custom message.
-