mongodb/mongoid

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

Summary

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

module Mongoid
  module Errors

    # This error is raised when attempting to destroy a model which has
    # an association with dependency option set to restrict.
    class DeleteRestriction < MongoidError

      # Create the new callbacks error.
      #
      # @param [ Document ] document The document that was attempted to be
      #   destroyed.
      # @param [ Symbol ] association_name The name of the dependent
      #   association that prevents the document from being deleted.
      def initialize(document, association_name)
        super(
          compose_message(
            "delete_restriction",
            { document: document.class, relation: association_name }
          )
        )
      end
    end
  end
end