Sha256: 2c9f7099a9b1b28a4196ed7f409c6e1c00fc86f69affeca9071dca9d915e4d54

Contents?: true

Size: 577 Bytes

Versions: 27

Compression:

Stored size: 577 Bytes

Contents

# frozen_string_literal: true
# encoding: utf-8

module Mongoid
  module Errors

    # This error is raised when trying to create set nested records above the
    # specified :limit
    #
    # @example Create the error.
    #   TooManyNestedAttributeRecords.new('association', limit)
    class TooManyNestedAttributeRecords < MongoidError
      def initialize(association, limit)
        super(
          compose_message(
            "too_many_nested_attribute_records",
            { association: association, limit: limit }
          )
        )
      end
    end
  end
end

Version data entries

27 entries across 27 versions & 2 rubygems

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