Package org.springframework.web.server
Class ServerWebInputException
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
- All Implemented Interfaces:
Serializable
,ErrorResponse
- Direct Known Subclasses:
MissingRequestValueException
,UnsatisfiedRequestParameterException
,WebExchangeBindException
Exception for errors that fit response status 400 (bad request) for use in
Spring Web applications. The exception provides additional fields (e.g.
an optional
MethodParameter
if related to the error).- Since:
- 5.0
- Author:
- Rossen Stoyanchev
- See Also:
-
Constructor Summary
ConstructorDescriptionServerWebInputException
(String reason) Constructor with an explanation only.ServerWebInputException
(String reason, MethodParameter parameter) Constructor for a 400 error linked to a specificMethodParameter
.ServerWebInputException
(String reason, MethodParameter parameter, Throwable cause) Constructor for a 400 error with a root cause. -
Method Summary
Modifier and TypeMethodDescriptionReturn theMethodParameter
associated with this error, if any.Methods inherited from class org.springframework.web.server.ResponseStatusException
getHeaders, getMessage, getReason, getResponseHeaders
Methods inherited from class org.springframework.web.ErrorResponseException
getBody, 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
-
Constructor Details
-
ServerWebInputException
Constructor with an explanation only. -
ServerWebInputException
Constructor for a 400 error linked to a specificMethodParameter
. -
ServerWebInputException
public ServerWebInputException(String reason, @Nullable MethodParameter parameter, @Nullable Throwable cause) Constructor for a 400 error with a root cause.
-
-
Method Details
-
getMethodParameter
Return theMethodParameter
associated with this error, if any.
-