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

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

Instance Attribute Summary collapse

Attributes inherited from ServiceError

#response_data, #status_code, #transaction_id

Attributes inherited from Errors::Error

#verbose

Class Method Summary collapse

Methods inherited from ServiceError

extract_message, #set_transaction_id, #to_s

Instance Attribute Details

#validation_errorsObject (readonly)

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



68
69
70
# File 'lib/fog/rackspace.rb', line 68

def validation_errors
  @validation_errors
end

Class Method Details

.slurp(error, service = nil) ⇒ Object



70
71
72
73
74
75
76
77
78
79
80
# File 'lib/fog/rackspace.rb', line 70

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

  status_code = error.response ? error.response.status : nil
  new_error.instance_variable_set(:@status_code, status_code)
  new_error.set_transaction_id(error, service)
  new_error
end