Sha256: 66bc97eeaaf6bf0904d2db0ba07e79399501b531850a2a5da823c31b36a437c7
Contents?: true
Size: 456 Bytes
Versions: 27
Compression:
Stored size: 456 Bytes
Contents
# frozen_string_literal: true # encoding: utf-8 module Mongoid module Errors # This error is raised when trying to access a Mongo::Collection from an # embedded document. # # @example Create the error. # InvalidCollection.new(Address) class InvalidCollection < MongoidError def initialize(klass) super( compose_message("invalid_collection", { klass: klass.name }) ) end end end end
Version data entries
27 entries across 27 versions & 2 rubygems