@@ -117,6 +117,7 @@ class HTTPSwitchProtocol < HTTPInformation
117
117
#
118
118
# References:
119
119
#
120
+ # - {RFC 2518}[https://www.rfc-editor.org/rfc/rfc2518#section-10.1].
120
121
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#102].
121
122
#
122
123
class HTTPProcessing < HTTPInformation
@@ -132,6 +133,7 @@ class HTTPProcessing < HTTPInformation
132
133
# References:
133
134
#
134
135
# - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/103].
136
+ # - {RFC 8297}[https://www.rfc-editor.org/rfc/rfc8297.html#section-2].
135
137
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#103].
136
138
#
137
139
class HTTPEarlyHints < HTTPInformation
@@ -255,6 +257,7 @@ class HTTPPartialContent < HTTPSuccess
255
257
#
256
258
# References:
257
259
#
260
+ # - {RFC 4818}[https://www.rfc-editor.org/rfc/rfc4918#section-11.1].
258
261
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#207].
259
262
#
260
263
class HTTPMultiStatus < HTTPSuccess
@@ -271,6 +274,7 @@ class HTTPMultiStatus < HTTPSuccess
271
274
#
272
275
# References:
273
276
#
277
+ # - {RFC 5842}[https://www.rfc-editor.org/rfc/rfc5842.html#section-7.1].
274
278
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#208].
275
279
#
276
280
class HTTPAlreadyReported < HTTPSuccess
@@ -285,6 +289,7 @@ class HTTPAlreadyReported < HTTPSuccess
285
289
#
286
290
# References:
287
291
#
292
+ # - {RFC 3229}[https://www.rfc-editor.org/rfc/rfc3229.html#section-10.4.1].
288
293
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#226].
289
294
#
290
295
class HTTPIMUsed < HTTPSuccess
@@ -710,6 +715,7 @@ class HTTPUnprocessableEntity < HTTPClientError
710
715
#
711
716
# References:
712
717
#
718
+ # - {RFC 4918}[https://www.rfc-editor.org/rfc/rfc4918#section-11.3].
713
719
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#423].
714
720
#
715
721
class HTTPLocked < HTTPClientError
@@ -723,6 +729,7 @@ class HTTPLocked < HTTPClientError
723
729
#
724
730
# References:
725
731
#
732
+ # - {RFC 4918}[https://www.rfc-editor.org/rfc/rfc4918#section-11.4].
726
733
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#424].
727
734
#
728
735
class HTTPFailedDependency < HTTPClientError
@@ -753,6 +760,7 @@ class HTTPUpgradeRequired < HTTPClientError
753
760
# References:
754
761
#
755
762
# - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/428].
763
+ # - {RFC 6585}[https://www.rfc-editor.org/rfc/rfc6585#section-3].
756
764
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#428].
757
765
#
758
766
class HTTPPreconditionRequired < HTTPClientError
@@ -766,6 +774,7 @@ class HTTPPreconditionRequired < HTTPClientError
766
774
# References:
767
775
#
768
776
# - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/429].
777
+ # - {RFC 6585}[https://www.rfc-editor.org/rfc/rfc6585#section-4].
769
778
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#429].
770
779
#
771
780
class HTTPTooManyRequests < HTTPClientError
@@ -780,6 +789,7 @@ class HTTPTooManyRequests < HTTPClientError
780
789
# References:
781
790
#
782
791
# - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/431].
792
+ # - {RFC 6585}[https://www.rfc-editor.org/rfc/rfc6585#section-5].
783
793
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#431].
784
794
#
785
795
class HTTPRequestHeaderFieldsTooLarge < HTTPClientError
@@ -794,6 +804,7 @@ class HTTPRequestHeaderFieldsTooLarge < HTTPClientError
794
804
# References:
795
805
#
796
806
# - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/451].
807
+ # - {RFC 7725}[https://www.rfc-editor.org/rfc/rfc7725.html#section-3].
797
808
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#451].
798
809
#
799
810
class HTTPUnavailableForLegalReasons < HTTPClientError
@@ -900,6 +911,7 @@ class HTTPVersionNotSupported < HTTPServerError
900
911
# References:
901
912
#
902
913
# - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/506].
914
+ # - {RFC 2295}[https://www.rfc-editor.org/rfc/rfc2295#section-8.1].
903
915
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#506].
904
916
#
905
917
class HTTPVariantAlsoNegotiates < HTTPServerError
@@ -913,6 +925,7 @@ class HTTPVariantAlsoNegotiates < HTTPServerError
913
925
# References:
914
926
#
915
927
# - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/507].
928
+ # - {RFC 4918}[https://www.rfc-editor.org/rfc/rfc4918#section-11.5].
916
929
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#507].
917
930
#
918
931
class HTTPInsufficientStorage < HTTPServerError
@@ -926,6 +939,7 @@ class HTTPInsufficientStorage < HTTPServerError
926
939
# References:
927
940
#
928
941
# - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/508].
942
+ # - {RFC 5942}[https://www.rfc-editor.org/rfc/rfc5842.html#section-7.2].
929
943
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#508].
930
944
#
931
945
class HTTPLoopDetected < HTTPServerError
@@ -940,6 +954,7 @@ class HTTPLoopDetected < HTTPServerError
940
954
# References:
941
955
#
942
956
# - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/510].
957
+ # - {RFC 2774}[https://www.rfc-editor.org/rfc/rfc2774.html#section-7].
943
958
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#510].
944
959
#
945
960
class HTTPNotExtended < HTTPServerError
@@ -953,6 +968,7 @@ class HTTPNotExtended < HTTPServerError
953
968
# References:
954
969
#
955
970
# - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/511].
971
+ # - {RFC 6585}[https://www.rfc-editor.org/rfc/rfc6585#section-6].
956
972
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#511].
957
973
#
958
974
class HTTPNetworkAuthenticationRequired < HTTPServerError
0 commit comments