Exception: Fog::HP::Errors::BadRequest

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

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)

Returns the value of attribute validation_errors.



47
48
49
# File 'lib/fog/hp/core.rb', line 47

def validation_errors
  @validation_errors
end

Class Method Details

.slurp(error) ⇒ Object



49
50
51
52
53
54
55
# File 'lib/fog/hp/core.rb', line 49

def self.slurp(error)
  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
  new_error
end