Exception: Grape::Exceptions::ValidationErrors
- Includes:
- Enumerable
- Defined in:
- lib/grape/exceptions/validation_errors.rb
Constant Summary
Constants inherited from Base
Base::BASE_ATTRIBUTES_KEY, Base::BASE_MESSAGES_KEY, Base::FALLBACK_LOCALE
Instance Attribute Summary collapse
-
#errors ⇒ Object
readonly
Returns the value of attribute errors.
Attributes inherited from Base
Instance Method Summary collapse
- #each ⇒ Object
-
#initialize(args = {}) ⇒ ValidationErrors
constructor
A new instance of ValidationErrors.
Methods inherited from Base
Constructor Details
#initialize(args = {}) ⇒ ValidationErrors
Returns a new instance of ValidationErrors.
10 11 12 13 14 15 16 17 |
# File 'lib/grape/exceptions/validation_errors.rb', line 10 def initialize(args = {}) @errors = {} args[:errors].each do |validation_error| @errors[validation_error.param] ||= [] @errors[validation_error.param] << validation_error end super message: .join(', '), status: 400 end |
Instance Attribute Details
#errors ⇒ Object (readonly)
Returns the value of attribute errors.
8 9 10 |
# File 'lib/grape/exceptions/validation_errors.rb', line 8 def errors @errors end |
Instance Method Details
#each ⇒ Object
19 20 21 22 23 24 25 |
# File 'lib/grape/exceptions/validation_errors.rb', line 19 def each errors.each_pair do |attribute, errors| errors.each do |error| yield attribute, error end end end |