Module: Net::HTTPExceptions
- Included in:
- HTTPError, HTTPFatalError, HTTPRetriableError, HTTPServerException
- Defined in:
- lib/net/http.rb
Overview
HTTP exception class. You must use its subclasses.
Instance Attribute Summary collapse
-
#response ⇒ Object
(also: #data)
readonly
Returns the value of attribute response.
Instance Method Summary collapse
-
#initialize(msg, res) ⇒ Object
:nodoc:.
Instance Attribute Details
#response ⇒ Object (readonly) Also known as: data
Returns the value of attribute response.
1702 1703 1704 |
# File 'lib/net/http.rb', line 1702 def response @response end |
Instance Method Details
#initialize(msg, res) ⇒ Object
:nodoc:
1698 1699 1700 1701 |
# File 'lib/net/http.rb', line 1698 def initialize(msg, res) #:nodoc: super msg @response = res end |