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 fb9ad07 commit 0c9c2f0Copy full SHA for 0c9c2f0
google-http-client/src/main/java/com/google/api/client/http/HttpStatusCodes.java
@@ -60,6 +60,9 @@ 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
+ /** Status code for a request that could not be completed due to a resource conflict. */
64
+ public static final int STATUS_CODE_CONFLICT = 409;
65
+
66
/** Status code for an internal server error. */
67
public static final int STATUS_CODE_SERVER_ERROR = 500;
68
0 commit comments