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