Sha256: 01c7187593236949576dec1b30bcee0b8ee4f095b47a41debba1016be19e0a8c
Contents?: true
Size: 626 Bytes
Versions: 25
Compression:
Stored size: 626 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. # # @deprecated No longer used by Mongoid per MONGOID-4841. 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
25 entries across 25 versions & 2 rubygems