summaryrefslogtreecommitdiff
path: root/ruby_2_2/lib/net/http/exceptions.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_2_2/lib/net/http/exceptions.rb')
-rw-r--r--ruby_2_2/lib/net/http/exceptions.rb25
1 files changed, 0 insertions, 25 deletions
diff --git a/ruby_2_2/lib/net/http/exceptions.rb b/ruby_2_2/lib/net/http/exceptions.rb
deleted file mode 100644
index 6c5d81cb04..0000000000
--- a/ruby_2_2/lib/net/http/exceptions.rb
+++ /dev/null
@@ -1,25 +0,0 @@
-# Net::HTTP exception class.
-# You cannot use Net::HTTPExceptions directly; instead, you must use
-# its subclasses.
-module Net::HTTPExceptions
- def initialize(msg, res) #:nodoc:
- super msg
- @response = res
- end
- attr_reader :response
- alias data response #:nodoc: obsolete
-end
-class Net::HTTPError < Net::ProtocolError
- include Net::HTTPExceptions
-end
-class Net::HTTPRetriableError < Net::ProtoRetriableError
- include Net::HTTPExceptions
-end
-class Net::HTTPServerException < Net::ProtoServerError
- # We cannot use the name "HTTPServerError", it is the name of the response.
- include Net::HTTPExceptions
-end
-class Net::HTTPFatalError < Net::ProtoFatalError
- include Net::HTTPExceptions
-end
-