summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-30 11:53:15 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-30 11:53:15 +0000
commit95aadb14267f6961df0d65fad51b61a0d30a65d8 (patch)
tree32e1dc3b05129ffb9ac9f3f31c94037d8f8a2d6e /lib
parent27f00a7a220d7b3bb9e6e22eb9bfae24f2e9351c (diff)
* lib/net/http/responses.rb: Added new response class for 451 status code.
* lib/net/http.rb: documentation for HTTPUnavailableForLegalReasons git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53387 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/net/http.rb1
-rw-r--r--lib/net/http/responses.rb3
2 files changed, 4 insertions, 0 deletions
diff --git a/lib/net/http.rb b/lib/net/http.rb
index bc01b29bff..f77df5efa3 100644
--- a/lib/net/http.rb
+++ b/lib/net/http.rb
@@ -370,6 +370,7 @@ module Net #:nodoc:
# HTTPPreconditionRequired:: 428
# HTTPTooManyRequests:: 429
# HTTPRequestHeaderFieldsTooLarge:: 431
+ # HTTPUnavailableForLegalReasons:: 451
# HTTPServerError:: 5xx
# HTTPInternalServerError:: 500
# HTTPNotImplemented:: 501
diff --git a/lib/net/http/responses.rb b/lib/net/http/responses.rb
index a5b8ddc68b..8e75f75d4f 100644
--- a/lib/net/http/responses.rb
+++ b/lib/net/http/responses.rb
@@ -169,6 +169,9 @@ end
class Net::HTTPRequestHeaderFieldsTooLarge < Net::HTTPClientError # 431 - RFC 6585
HAS_BODY = true
end
+class Net::HTTPUnavailableForLegalReasons < Net::HTTPClientError # 451
+ HAS_BODY = true
+end
# 444 No Response - Nginx
# 449 Retry With - Microsoft
# 450 Blocked by Windows Parental Controls - Microsoft