Exception: Mongoid::Errors::UnsavedDocument

Inherits:
MongoidError
  • Object
show all
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 persisted and immediately being orphaned.

Constant Summary

Constants inherited from MongoidError

MongoidError::BASE_KEY

Instance Attribute Summary

Attributes inherited from MongoidError

#problem, #resolution, #summary

Instance Method Summary collapse

Methods inherited from MongoidError

#compose_message

Constructor Details

#initialize(base, document) ⇒ UnsavedDocument

Returns a new instance of UnsavedDocument.



11
12
13
14
15
16
17
18
# File 'lib/mongoid/errors/unsaved_document.rb', line 11

def initialize(base, document)
  super(
    compose_message(
      "unsaved_document",
      { base: base.class.name, document: document.class.name }
    )
  )
end