Sha256: d40769b482c094c6ef3ea1cb17b3e7e22ab115bbbaaf2431a6d80841014b2ec5
Contents?: true
Size: 561 Bytes
Versions: 66
Compression:
Stored size: 561 Bytes
Contents
# encoding: utf-8 module Mongoid module Errors # Raised when calling store_in in a sub-class of Mongoid::Document class InvalidStorageParent < MongoidError # Create the new error. # # @example Create the new error. # InvalidStorageParent.new(Person) # # @param [ Class ] klass The model class. # # @since 4.0.0 def initialize(klass) super( compose_message( "invalid_storage_parent", { klass: klass } ) ) end end end end
Version data entries
66 entries across 61 versions & 3 rubygems