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