Exception: Theoldreader::Exceptions::ResponseError
- Inherits:
-
StandardError
- Object
- StandardError
- Theoldreader::Exceptions::ResponseError
- Defined in:
- lib/theoldreader/api.rb
Instance Attribute Summary collapse
-
#response ⇒ Object
readonly
Returns the value of attribute response.
Instance Method Summary collapse
-
#initialize(response) ⇒ ResponseError
constructor
A new instance of ResponseError.
- #to_s ⇒ Object
Constructor Details
#initialize(response) ⇒ ResponseError
Returns a new instance of ResponseError.
123 124 125 |
# File 'lib/theoldreader/api.rb', line 123 def initialize(response) @response = response end |
Instance Attribute Details
#response ⇒ Object (readonly)
Returns the value of attribute response.
121 122 123 |
# File 'lib/theoldreader/api.rb', line 121 def response @response end |
Instance Method Details
#to_s ⇒ Object
127 128 129 |
# File 'lib/theoldreader/api.rb', line 127 def to_s super + format(' (%s)', data.map { |k, v| %(#{k}: "#{v}") }.join(', ')) end |