Exception: Fog::OpenStack::Errors::ServiceError
- Inherits:
-
Errors::Error
- Object
- StandardError
- Errors::Error
- Fog::OpenStack::Errors::ServiceError
- Defined in:
- lib/fog/openstack.rb
Direct Known Subclasses
BadRequest, Conflict, InternalServerError, NotFound, ServiceUnavailable
Instance Attribute Summary collapse
-
#response_data ⇒ Object
readonly
Returns the value of attribute response_data.
Attributes inherited from Errors::Error
Class Method Summary collapse
Instance Attribute Details
#response_data ⇒ Object (readonly)
Returns the value of attribute response_data.
9 10 11 |
# File 'lib/fog/openstack.rb', line 9 def response_data @response_data end |
Class Method Details
.slurp(error) ⇒ Object
11 12 13 14 15 16 17 18 19 20 21 22 23 |
# File 'lib/fog/openstack.rb', line 11 def self.slurp(error) if error.response.body.empty? data = nil = nil else data = Fog::JSON.decode(error.response.body) = data['message'] end new_error = super(error, ) new_error.instance_variable_set(:@response_data, data) new_error end |