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 98e6d48 commit 79e9732Copy full SHA for 79e9732
google-http-client/src/main/java/com/google/api/client/http/HttpStatusCodes.java
@@ -78,6 +78,12 @@ public class HttpStatusCodes {
78
/** Status code for a request for which one of the conditions it was made under has failed. */
79
public static final int STATUS_CODE_PRECONDITION_FAILED = 412;
80
81
+ /**
82
+ * Status code for a request for which the content-type and the request's syntax were correct but
83
+ * server was not able to process entity.
84
+ */
85
+ public static final int STATUS_CODE_UNPROCESSABLE_ENTITY = 422;
86
+
87
/** Status code for an internal server error. */
88
public static final int STATUS_CODE_SERVER_ERROR = 500;
89
0 commit comments