X7ROOT File Manager
Current Path:
/opt/alt/ruby34/share/rubygems/rubygems/vendor/net-http/lib/net/http
opt
/
alt
/
ruby34
/
share
/
rubygems
/
rubygems
/
vendor
/
net-http
/
lib
/
net
/
http
/
ðŸ“
..
📄
exceptions.rb
(852 B)
📄
generic_request.rb
(12.29 KB)
📄
header.rb
(32.5 KB)
📄
proxy_delta.rb
(276 B)
📄
request.rb
(3.01 KB)
📄
requests.rb
(14.01 KB)
📄
response.rb
(19.72 KB)
📄
responses.rb
(39.86 KB)
📄
status.rb
(2.26 KB)
Editing: exceptions.rb
# frozen_string_literal: true module Gem::Net # Gem::Net::HTTP exception class. # You cannot use Gem::Net::HTTPExceptions directly; instead, you must use # its subclasses. module HTTPExceptions def initialize(msg, res) #:nodoc: super msg @response = res end attr_reader :response alias data response #:nodoc: obsolete end class HTTPError < ProtocolError include HTTPExceptions end class HTTPRetriableError < ProtoRetriableError include HTTPExceptions end class HTTPClientException < ProtoServerError include HTTPExceptions end class HTTPFatalError < ProtoFatalError include HTTPExceptions end # We cannot use the name "HTTPServerError", it is the name of the response. HTTPServerException = HTTPClientException # :nodoc: deprecate_constant(:HTTPServerException) end
Upload File
Create Folder