8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75c2b20 commit 1307062Copy full SHA for 1307062
google-http-client/src/main/java/com/google/api/client/http/HttpStatusCodes.java
@@ -60,6 +60,12 @@ public class HttpStatusCodes {
60
/** Status code for a server that has not found anything matching the Request-URI. */
61
public static final int STATUS_CODE_NOT_FOUND = 404;
62
63
+ /**
64
+ * Status code for a method specified in the Request-Line is not allowed for the resource
65
+ * identified by the Request-URI.
66
+ * */
67
+ public static final int STATUS_CODE_METHOD_NOT_ALLOWED = 405;
68
+
69
/** Status code for a request that could not be completed due to a resource conflict. */
70
public static final int STATUS_CODE_CONFLICT = 409;
71
0 commit comments