Package org.springframework.web.server
Class MethodNotAllowedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.core.NestedRuntimeException
org.springframework.web.server.ResponseStatusException
org.springframework.web.server.MethodNotAllowedException
- All Implemented Interfaces:
Serializable
Exception for errors that fit response status 405 (method not allowed).
- Since:
- 5.0
- Author:
- Rossen Stoyanchev
- See Also:
-
Constructor Summary
ConstructorDescriptionMethodNotAllowedException
(String method, Collection<HttpMethod> supportedMethods) MethodNotAllowedException
(HttpMethod method, Collection<HttpMethod> supportedMethods) -
Method Summary
Modifier and TypeMethodDescriptionReturn the HTTP method for the failed request.Return HttpHeaders with an "Allow" header.Return the list of supported HTTP methods.Methods inherited from class org.springframework.web.server.ResponseStatusException
getMessage, getRawStatusCode, getReason, getStatus
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
-
MethodNotAllowedException
-
MethodNotAllowedException
-
-
Method Details
-
getResponseHeaders
Return HttpHeaders with an "Allow" header.- Overrides:
getResponseHeaders
in classResponseStatusException
- Since:
- 5.1.13
-
getHttpMethod
Return the HTTP method for the failed request. -
getSupportedMethods
Return the list of supported HTTP methods.
-