mongodb/mongoid

View on GitHub
lib/mongoid/errors/no_parent.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true
# rubocop:todo all

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