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 e313223 commit a5e89e0Copy full SHA for a5e89e0
src/main/java/io/github/malczuuu/problem4j/core/ProblemStatus.java
@@ -467,9 +467,19 @@ public enum ProblemStatus {
467
* 422 Unprocessable Entity.
468
*
469
* @link <a href="https://datatracker.ietf.org/doc/html/rfc4918#section-11.2">RFC 4918 §11.2</a>
470
+ * @deprecated renamed to {@link #UNPROCESSABLE_CONTENT} by RFC 9110.
471
*/
472
+ @Deprecated
473
UNPROCESSABLE_ENTITY(422, "Unprocessable Entity"),
474
475
+ /**
476
+ * 422 Unprocessable Content.
477
+ *
478
+ * @link <a href="https://datatracker.ietf.org/doc/html/rfc9110#section-15.5.21">RFC 9110
479
+ * §15.5.21</a>
480
+ */
481
+ UNPROCESSABLE_CONTENT(422, "Unprocessable Content"),
482
+
483
/**
484
* 423 Locked.
485
0 commit comments