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
#failed_validations ⇒ Object (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_hash ⇒ Object
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_h ⇒ Object
84 85 86 |
# File 'lib/errors.rb', line 84 def to_h super(errors_hash) end |