Exception: Fog::Rackspace::Errors::BadRequest

Inherits:
ServiceError show all
Defined in:
lib/rackspace-fog/rackspace.rb

Direct Known Subclasses

LoadBalancers::BadRequest

Instance Attribute Summary collapse

Attributes inherited from ServiceError

#response_data

Attributes inherited from Errors::Error

#verbose

Class Method Summary collapse

Instance Attribute Details

#validation_errorsObject (readonly)

TODO - Need to find a bette way to print out these validation errors when they are thrown



33
34
35
# File 'lib/rackspace-fog/rackspace.rb', line 33

def validation_errors
  @validation_errors
end

Class Method Details

.slurp(error) ⇒ Object



35
36
37
38
39
40
41
# File 'lib/rackspace-fog/rackspace.rb', line 35

def self.slurp(error)
  new_error = super(error)
  unless new_error.response_data.nil?
    new_error.instance_variable_set(:@validation_errors, new_error.response_data['validationErrors'])
  end
  new_error
end