Exception: Grape::Exceptions::Validation
- Defined in:
- lib/grape/exceptions/validation.rb
Constant Summary
Constants inherited from Base
Base::BASE_ATTRIBUTES_KEY, Base::BASE_MESSAGES_KEY, Base::FALLBACK_LOCALE
Instance Attribute Summary collapse
-
#param ⇒ Object
Returns the value of attribute param.
Attributes inherited from Base
Instance Method Summary collapse
-
#as_json(*args) ⇒ Object
remove all the unnecessary stuff from Grape::Exceptions::Base like status and headers when converting a validation error to json or string.
-
#initialize(args = {}) ⇒ Validation
constructor
A new instance of Validation.
- #to_s ⇒ Object
Methods inherited from Base
Constructor Details
#initialize(args = {}) ⇒ Validation
Returns a new instance of Validation.
8 9 10 11 12 13 |
# File 'lib/grape/exceptions/validation.rb', line 8 def initialize(args = {}) raise "Param is missing:" unless args.key? :param @param = args[:param] args[:message] = (args[:message_key]) if args.key? :message_key super end |
Instance Attribute Details
#param ⇒ Object
Returns the value of attribute param.
6 7 8 |
# File 'lib/grape/exceptions/validation.rb', line 6 def param @param end |
Instance Method Details
#as_json(*args) ⇒ Object
remove all the unnecessary stuff from Grape::Exceptions::Base like status and headers when converting a validation error to json or string
17 18 19 |
# File 'lib/grape/exceptions/validation.rb', line 17 def as_json(*args) to_s end |
#to_s ⇒ Object
21 22 23 |
# File 'lib/grape/exceptions/validation.rb', line 21 def to_s end |