Method: Mongoid::Errors::AttributeNotLoaded#initialize
- Defined in:
- lib/mongoid/errors/attribute_not_loaded.rb
#initialize(klass, name) ⇒ AttributeNotLoaded
Create the new error.
27 28 29 30 31 |
# File 'lib/mongoid/errors/attribute_not_loaded.rb', line 27 def initialize(klass, name) super( ("attribute_not_loaded", { klass: klass.name, name: name }) ) end |