Exception: Fog::Rackspace::Errors::ServiceError
- Inherits:
-
Errors::Error
- Object
- StandardError
- Errors::Error
- Fog::Rackspace::Errors::ServiceError
- Defined in:
- lib/fog/rackspace.rb
Direct Known Subclasses
Compute::RackspaceV2::ServiceError, BlockStorage::ServiceError, Databases::ServiceError, BadRequest, Conflict, InternalServerError, NotFound, ServiceUnavailable, LoadBalancers::ServiceError
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/rackspace.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/rackspace.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 |