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 f956cce commit d14937fCopy full SHA for d14937f
src/main/java/io/github/malczuuu/problem4j/core/ProblemStatus.java
@@ -428,9 +428,19 @@ public enum ProblemStatus {
428
*
429
* @link <a href="https://datatracker.ietf.org/doc/html/rfc2616#section-10.4.17">RFC 2616
430
* §10.5.17</a>
431
+ * @deprecated renamed to {@link #RANGE_NOT_SATISFIABLE} by RFC 9110.
432
*/
433
+ @Deprecated
434
REQUESTED_RANGE_NOT_SATISFIABLE(416, "Requested Range Not Satisfiable"),
435
436
+ /**
437
+ * 416 Range Not Satisfiable.
438
+ *
439
+ * @link <a href="https://datatracker.ietf.org/doc/html/rfc9110#section-15.5.17">RFC 9110
440
+ * §15.5.17</a>
441
+ */
442
+ RANGE_NOT_SATISFIABLE(416, "Range Not Satisfiable"),
443
+
444
/**
445
* 417 Expectation Failed.
446
0 commit comments