Sha256: ad4505f2801b1ea7c70852ab3c6aa6ca62908dedb9e72665c627c0d4d5f8ef33
Contents?: true
Size: 540 Bytes
Versions: 105
Compression:
Stored size: 540 Bytes
Contents
# encoding: utf-8 module Mongoid module Errors # This error is raised when trying to persist an embedded document # when there is no parent set. class NoParent < MongoidError # Create the new error. # # @example Create the new error. # NoParent.new(klass) # # @param [ Class ] klass The class of the embedded document. # # @since 3.0.0 def initialize(klass) super( compose_message("no_parent", { klass: klass }) ) end end end end
Version data entries
105 entries across 100 versions & 7 rubygems