Exception: Fog::Rackspace::LoadBalancers::ServiceError

Inherits:
Errors::Error
  • Object
show all
Defined in:
lib/fog/rackspace/load_balancers.rb

Direct Known Subclasses

BadRequest, InternalServerError

Instance Attribute Summary collapse

Attributes inherited from Errors::Error

#verbose

Class Method Summary collapse

Instance Attribute Details

#response_dataObject (readonly)

Returns the value of attribute response_data.



6
7
8
# File 'lib/fog/rackspace/load_balancers.rb', line 6

def response_data
  @response_data
end

Class Method Details

.slurp(error) ⇒ Object



8
9
10
11
12
13
14
15
16
17
18
19
20
# File 'lib/fog/rackspace/load_balancers.rb', line 8

def self.slurp(error)
  if error.response.body.empty?
    data = nil
    message = nil
  else
    data = MultiJson.decode(error.response.body)
    message = data['message']
  end

  new_error = super(error, message)
  new_error.instance_variable_set(:@response_data, data)
  new_error
end