Exception: Devise::Models::MissingAttribute
- Inherits:
-
StandardError
- Object
- StandardError
- Devise::Models::MissingAttribute
- Defined in:
- lib/devise/models.rb
Instance Method Summary collapse
-
#initialize(attributes) ⇒ MissingAttribute
constructor
A new instance of MissingAttribute.
- #message ⇒ Object
Constructor Details
#initialize(attributes) ⇒ MissingAttribute
Returns a new instance of MissingAttribute.
4 5 6 |
# File 'lib/devise/models.rb', line 4 def initialize(attributes) @attributes = attributes end |
Instance Method Details
#message ⇒ Object
8 9 10 |
# File 'lib/devise/models.rb', line 8 def "The following attribute(s) is (are) missing on your model: #{@attributes.join(", ")}" end |