Exception: Ebay::ConnectionError
- Inherits:
-
StandardError
- Object
- StandardError
- Ebay::ConnectionError
- Defined in:
- lib/ebay/request/connection.rb
Overview
:nodoc:
Direct Known Subclasses
Instance Attribute Summary collapse
-
#response ⇒ Object
readonly
Returns the value of attribute response.
Instance Method Summary collapse
-
#initialize(response, message = nil) ⇒ ConnectionError
constructor
A new instance of ConnectionError.
- #to_s ⇒ Object
Constructor Details
#initialize(response, message = nil) ⇒ ConnectionError
Returns a new instance of ConnectionError.
10 11 12 13 |
# File 'lib/ebay/request/connection.rb', line 10 def initialize(response, = nil) @response = response @message = end |
Instance Attribute Details
#response ⇒ Object (readonly)
Returns the value of attribute response.
8 9 10 |
# File 'lib/ebay/request/connection.rb', line 8 def response @response end |
Instance Method Details
#to_s ⇒ Object
15 16 17 |
# File 'lib/ebay/request/connection.rb', line 15 def to_s "Failed with #{response.code}" end |