Exception: Mongoid::Errors::InvalidCollection

Inherits:
MongoidError
  • Object
show all
Defined in:
lib/mongoid/errors/invalid_collection.rb

Overview

This error is raised when trying to access a Mongo::Collection from an embedded document.

Examples:

Create the error.

InvalidCollection.new(Address)

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(klass) ⇒ InvalidCollection

Returns a new instance of InvalidCollection.



13
14
15
16
17
# File 'lib/mongoid/errors/invalid_collection.rb', line 13

def initialize(klass)
  super(
    compose_message("invalid_collection", { klass: klass.name })
  )
end