X7ROOT File Manager
Current Path:
/opt/alt/ruby40/share/ruby/net/http
opt
/
alt
/
ruby40
/
share
/
ruby
/
net
/
http
/
??
..
??
exceptions.rb
(861 B)
??
generic_request.rb
(12.47 KB)
??
header.rb
(32.16 KB)
??
proxy_delta.rb
(271 B)
??
request.rb
(2.8 KB)
??
requests.rb
(13.19 KB)
??
response.rb
(19.15 KB)
??
responses.rb
(40.58 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 # :nodoc: def initialize(msg, res) #:nodoc: super msg @response = res end attr_reader :response alias data response #:nodoc: obsolete end # :stopdoc: 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