Exception: Mints::Errors::ValidationException

Inherits:
ServiceError
  • Object
show all
Defined in:
lib/errors.rb

Instance Attribute Summary collapse

Attributes inherited from ServiceError

#client, #detail, #http_status, #response, #title

Instance Method Summary collapse

Methods inherited from ServiceError

#initialize, #to_s

Constructor Details

This class inherits a constructor from Mints::Errors::ServiceError

Instance Attribute Details

#failed_validationsObject (readonly)

Returns the value of attribute failed_validations.


94
95
96
# File 'lib/errors.rb', line 94

def failed_validations
  @failed_validations
end

Instance Method Details

#errors_hashObject


88
89
90
91
92
# File 'lib/errors.rb', line 88

def errors_hash
  {
    errors: response.keys.reduce([]) { |carry, error_key| carry + response[error_key] }
  }
end

#to_hObject


84
85
86
# File 'lib/errors.rb', line 84

def to_h
  super(errors_hash)
end