Exception: Mints::Errors::ValidationException
- Inherits:
-
ServiceError
- Object
- RuntimeError
- ServiceError
- Mints::Errors::ValidationException
- Defined in:
- lib/errors.rb
Instance Attribute Summary collapse
-
#failed_validations ⇒ Object
readonly
Returns the value of attribute failed_validations.
Attributes inherited from ServiceError
#client, #detail, #http_status, #response, #title
Instance Method Summary collapse
Methods inherited from ServiceError
Constructor Details
This class inherits a constructor from Mints::Errors::ServiceError
Instance Attribute Details
permalink #failed_validations ⇒ Object (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
permalink #errors_hash ⇒ Object
[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 |
permalink #to_h ⇒ Object
[View source]
82 83 84 |
# File 'lib/errors.rb', line 82 def to_h super(errors_hash) end |