Sha256: ace9305dc9eef3f64f4ef25f1d47b917351e7b578d71a0129388f156505266bc
Contents?: true
Size: 558 Bytes
Versions: 2
Compression:
Stored size: 558 Bytes
Contents
# frozen_string_literal: true # encoding: utf-8 module Mongoid module Errors # This error is raised when attempting to eager load a many to many # association. class EagerLoad < MongoidError # Create the new eager load error. # # @example Create the new eager load error. # EagerLoad.new(:preferences) # # @param [ Symbol ] name The name of the association. # # @since 2.2.0 def initialize(name) super(compose_message("eager_load", { name: name })) end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
mongoid-7.1.0 | lib/mongoid/errors/eager_load.rb |
mongoid-7.1.0.rc0 | lib/mongoid/errors/eager_load.rb |