Exception: Mongoid::Errors::UnsavedDocument
- Inherits:
-
MongoidError
- Object
- StandardError
- MongoidError
- Mongoid::Errors::UnsavedDocument
- Defined in:
- lib/mongoid/errors/unsaved_document.rb
Overview
Raised when attempting to call create or create! through a references_many when the parent document has not been saved. This prevents the child from getting presisted and immediately being orphaned.
Constant Summary
Constants inherited from MongoidError
Instance Attribute Summary collapse
-
#base ⇒ Object
readonly
Returns the value of attribute base.
-
#document ⇒ Object
readonly
Returns the value of attribute document.
Instance Method Summary collapse
-
#initialize(base, document) ⇒ UnsavedDocument
constructor
A new instance of UnsavedDocument.
Methods inherited from MongoidError
Constructor Details
#initialize(base, document) ⇒ UnsavedDocument
Returns a new instance of UnsavedDocument.
12 13 14 15 16 17 18 19 20 |
# File 'lib/mongoid/errors/unsaved_document.rb', line 12 def initialize(base, document) @base, @document = base, document super( translate( "unsaved_document", { :base => base.class.name, :document => document.class.name } ) ) end |
Instance Attribute Details
#base ⇒ Object (readonly)
Returns the value of attribute base.
10 11 12 |
# File 'lib/mongoid/errors/unsaved_document.rb', line 10 def base @base end |
#document ⇒ Object (readonly)
Returns the value of attribute document.
10 11 12 |
# File 'lib/mongoid/errors/unsaved_document.rb', line 10 def document @document end |