X7ROOT File Manager
Current Path:
/opt/alt/ruby33/share/ruby/net/http
opt
/
alt
/
ruby33
/
share
/
ruby
/
net
/
http
/
ðŸ“
..
📄
backward.rb
(1.05 KB)
📄
exceptions.rb
(837 B)
📄
generic_request.rb
(12.11 KB)
📄
header.rb
(32 KB)
📄
proxy_delta.rb
(271 B)
📄
request.rb
(2.8 KB)
📄
requests.rb
(12.84 KB)
📄
response.rb
(19.12 KB)
📄
responses.rb
(39.5 KB)
📄
status.rb
(2.25 KB)
Editing: exceptions.rb
# frozen_string_literal: true module Net # Net::HTTP exception class. # You cannot use 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