class Mongoid::Errors::InvalidStorageParent

@deprecated
Raised when calling store_in in a sub-class of Mongoid::Document

def initialize(klass)

Parameters:
  • klass (Class) -- The model class.

Other tags:
    Example: Create the new error. -
def initialize(klass)
  super(
    compose_message(
      "invalid_storage_parent",
      { klass: klass }
    )
  )
end