Exception: Tinyembedly::ResponseError
- Inherits:
-
StandardError
- Object
- StandardError
- Tinyembedly::ResponseError
- Defined in:
- lib/tinyembedly/response_error.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.
5 6 7 |
# File 'lib/tinyembedly/response_error.rb', line 5 def initialize(response) @response = response end |
Instance Attribute Details
#response ⇒ Object (readonly)
Returns the value of attribute response.
3 4 5 |
# File 'lib/tinyembedly/response_error.rb', line 3 def response @response end |
Instance Method Details
#to_s ⇒ Object
9 10 11 |
# File 'lib/tinyembedly/response_error.rb', line 9 def to_s @response.inspect end |