|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object java.lang.Throwable java.lang.Exception javax.servlet.ServletException org.springframework.web.HttpRequestMethodNotSupportedException
public class HttpRequestMethodNotSupportedException
Exception thrown when a request handler does not support a specific request method.
Constructor Summary | |
---|---|
HttpRequestMethodNotSupportedException(String method)
Create a new HttpRequestMethodNotSupportedException. |
|
HttpRequestMethodNotSupportedException(String method,
Collection<String> supportedMethods)
Create 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. |
Method Summary | |
---|---|
String |
getMethod()
Return the HTTP request method that caused the failure. |
String[] |
getSupportedMethods()
Return the actually supported HTTP methods, if known. |
Methods inherited from class javax.servlet.ServletException |
---|
getRootCause |
Methods inherited from class java.lang.Throwable |
---|
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public HttpRequestMethodNotSupportedException(String method)
method
- the unsupported HTTP request methodpublic HttpRequestMethodNotSupportedException(String method, String[] supportedMethods)
method
- the unsupported HTTP request methodsupportedMethods
- the actually supported HTTP methodspublic HttpRequestMethodNotSupportedException(String method, Collection<String> supportedMethods)
method
- the unsupported HTTP request methodsupportedMethods
- the actually supported HTTP methodspublic HttpRequestMethodNotSupportedException(String method, String msg)
method
- the unsupported HTTP request methodmsg
- the detail messagepublic HttpRequestMethodNotSupportedException(String method, String[] supportedMethods, String msg)
method
- the unsupported HTTP request methodsupportedMethods
- the actually supported HTTP methodsmsg
- the detail messageMethod Detail |
---|
public String getMethod()
public String[] getSupportedMethods()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |