Skip to content

Commit 7a42fc5

Browse files
authored
Adds http code 422
1 parent b2ddc4b commit 7a42fc5

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/main/java/jodd/http/HttpStatus.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,11 @@ public static boolean isError(final int statusCode) {
213213
*/
214214
public static final int HTTP_UNSUPPORTED_TYPE = 415;
215215

216+
/**
217+
* HTTP Status-Code 422: Unprocessable Entity.
218+
*/
219+
public static final int HTTP_UNPROCESSABLE_ENTITY = 422;
220+
216221
// ---------------------------------------------------------------- 5xx
217222

218223
/**

0 commit comments

Comments
 (0)