Sha256: 4a83607ad84fbb6b9c1032c3c78f36c79dff6fb3d7302f374619f434df064a02
Contents?: true
Size: 524 Bytes
Versions: 29
Compression:
Stored size: 524 Bytes
Contents
# frozen_string_literal: true 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. def initialize(klass) super( compose_message("no_parent", { klass: klass }) ) end end end end
Version data entries
29 entries across 29 versions & 1 rubygems