Package org.springframework.web
Class HttpRequestMethodNotSupportedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
jakarta.servlet.ServletException
org.springframework.web.HttpRequestMethodNotSupportedException
- All Implemented Interfaces:
Serializable
Exception thrown when a request handler does not support a
specific request method.
- Since:
- 2.0
- Author:
- Juergen Hoeller
- See Also:
-
Constructor Summary
ConstructorDescriptionCreate a new HttpRequestMethodNotSupportedException.HttpRequestMethodNotSupportedException
(String method, String msg) Create a new HttpRequestMethodNotSupportedException.HttpRequestMethodNotSupportedException
(String method, String[] supportedMethods) Create a new HttpRequestMethodNotSupportedException.HttpRequestMethodNotSupportedException
(String method, String[] supportedMethods, String msg) Create a new HttpRequestMethodNotSupportedException.HttpRequestMethodNotSupportedException
(String method, Collection<String> supportedMethods) Create a new HttpRequestMethodNotSupportedException. -
Method Summary
Modifier and TypeMethodDescriptionReturn the HTTP request method that caused the failure.Return the actually supported HTTP methods asHttpMethod
instances, ornull
if not known.String[]
Return the actually supported HTTP methods, ornull
if not known.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
-
Constructor Details
-
HttpRequestMethodNotSupportedException
Create a new HttpRequestMethodNotSupportedException.- Parameters:
method
- the unsupported HTTP request method
-
HttpRequestMethodNotSupportedException
Create a new HttpRequestMethodNotSupportedException.- Parameters:
method
- the unsupported HTTP request methodmsg
- the detail message
-
HttpRequestMethodNotSupportedException
public HttpRequestMethodNotSupportedException(String method, @Nullable Collection<String> supportedMethods) Create a new HttpRequestMethodNotSupportedException.- Parameters:
method
- the unsupported HTTP request methodsupportedMethods
- the actually supported HTTP methods (may benull
)
-
HttpRequestMethodNotSupportedException
Create a new HttpRequestMethodNotSupportedException.- Parameters:
method
- the unsupported HTTP request methodsupportedMethods
- the actually supported HTTP methods (may benull
)
-
HttpRequestMethodNotSupportedException
public HttpRequestMethodNotSupportedException(String method, @Nullable String[] supportedMethods, String msg) Create a new HttpRequestMethodNotSupportedException.- Parameters:
method
- the unsupported HTTP request methodsupportedMethods
- the actually supported HTTP methodsmsg
- the detail message
-
-
Method Details
-
getMethod
Return the HTTP request method that caused the failure. -
getSupportedMethods
Return the actually supported HTTP methods, ornull
if not known. -
getSupportedHttpMethods
Return the actually supported HTTP methods asHttpMethod
instances, ornull
if not known.- Since:
- 3.2
-