Exception: Ey::Core::Response::Error
- Inherits:
-
StandardError
- Object
- StandardError
- Ey::Core::Response::Error
- Defined in:
- lib/ey-core/response.rb
Instance Attribute Summary collapse
-
#response ⇒ Object
readonly
Returns the value of attribute response.
Instance Method Summary collapse
- #error_type ⇒ Object
-
#initialize(response) ⇒ Error
constructor
A new instance of Error.
Constructor Details
#initialize(response) ⇒ Error
Returns a new instance of Error.
5 6 7 8 9 10 11 12 13 14 15 |
# File 'lib/ey-core/response.rb', line 5 def initialize(response) @response = response super( { :status => response.status, :headers => response.headers, :body => response.body, :request => response.request }.inspect ) end |
Instance Attribute Details
#response ⇒ Object (readonly)
Returns the value of attribute response.
3 4 5 |
# File 'lib/ey-core/response.rb', line 3 def response @response end |
Instance Method Details
#error_type ⇒ Object
17 18 19 |
# File 'lib/ey-core/response.rb', line 17 def error_type self.class.name.split(":").last end |