Exception: Granite::Form::ValidationError
- Defined in:
- lib/granite/form/errors.rb
Overview
Backported from active_model 5
Instance Attribute Summary collapse
-
#model ⇒ Object
readonly
Returns the value of attribute model.
Instance Method Summary collapse
-
#initialize(model) ⇒ ValidationError
constructor
A new instance of ValidationError.
Constructor Details
#initialize(model) ⇒ ValidationError
Returns a new instance of ValidationError.
13 14 15 16 17 18 |
# File 'lib/granite/form/errors.rb', line 13 def initialize(model) @model = model errors = @model.errors..join(', ') super(I18n.t(:"#{@model.class.i18n_scope}.errors.messages.model_invalid", errors: errors, default: :'errors.messages.model_invalid')) end |
Instance Attribute Details
#model ⇒ Object (readonly)
Returns the value of attribute model.
11 12 13 |
# File 'lib/granite/form/errors.rb', line 11 def model @model end |