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.


92
93
94
# File 'lib/errors.rb', line 92

def failed_validations
  @failed_validations
end

Instance Method Details

#errors_hashObject

[View source]

86
87
88
89
90
# File 'lib/errors.rb', line 86

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

#to_hObject

[View source]

82
83
84
# File 'lib/errors.rb', line 82

def to_h
  super(errors_hash)
end