Sha256: 948dc70e0a93f9eee93b23f5c2803145743452165e69966c31be24a844043dd1

Contents?: true

Size: 655 Bytes

Versions: 27

Compression:

Stored size: 655 Bytes

Contents

# frozen_string_literal: true
# encoding: utf-8

module Mongoid
  module Errors

    # Raised when attempting to destroy a document that had destory callbacks
    # return false.
    #
    # @since 4.0.0
    class DocumentNotDestroyed < MongoidError

      # Instnatiate the exception.
      #
      # @example Create the error.
      #   DocumentNotDestroyed.new(Band)
      #
      # @param [ Object ] id The document id.
      # @param [ Class ] klass The document class.
      #
      # @since 4.0.0
      def initialize(id, klass)
        super(compose_message("document_not_destroyed", { id: id.inspect, klass: klass }))
      end
    end
  end
end

Version data entries

27 entries across 27 versions & 2 rubygems

Version Path
mongoid-7.3.5 lib/mongoid/errors/document_not_destroyed.rb
mongoid-7.3.4 lib/mongoid/errors/document_not_destroyed.rb
mongoid-7.1.11 lib/mongoid/errors/document_not_destroyed.rb
mongoid-7.2.6 lib/mongoid/errors/document_not_destroyed.rb
mongoid-7.3.3 lib/mongoid/errors/document_not_destroyed.rb
mongoid-7.3.2 lib/mongoid/errors/document_not_destroyed.rb
mongoid-7.2.5 lib/mongoid/errors/document_not_destroyed.rb
mongoid-7.1.10 lib/mongoid/errors/document_not_destroyed.rb
mongoid-7.1.9 lib/mongoid/errors/document_not_destroyed.rb
mongoid-7.2.4 lib/mongoid/errors/document_not_destroyed.rb
mongoid-7.3.1 lib/mongoid/errors/document_not_destroyed.rb
tdiary-5.1.6 vendor/bundle/ruby/2.7.0/gems/mongoid-7.1.7/lib/mongoid/errors/document_not_destroyed.rb
mongoid-7.3.0 lib/mongoid/errors/document_not_destroyed.rb
mongoid-7.2.3 lib/mongoid/errors/document_not_destroyed.rb
mongoid-7.1.8 lib/mongoid/errors/document_not_destroyed.rb
mongoid-7.2.2 lib/mongoid/errors/document_not_destroyed.rb
mongoid-7.2.1 lib/mongoid/errors/document_not_destroyed.rb
mongoid-7.1.7 lib/mongoid/errors/document_not_destroyed.rb
mongoid-7.2.0 lib/mongoid/errors/document_not_destroyed.rb
mongoid-7.1.6 lib/mongoid/errors/document_not_destroyed.rb