Sha256: b26321a25fb71650203bfa635fd4da820bdd462845b6b31f03bea95de047ce1f
Contents?: true
Size: 499 Bytes
Versions: 32
Compression:
Stored size: 499 Bytes
Contents
# encoding: utf-8 module Mongoid module Errors # This error is raised when attempting to do a query with a # collation on documents in memory. class InMemoryCollationNotSupported < MongoidError # Create the new error. # # @example Create the new unsupported collation error. # InMemoryCollationNotSupported.new # # @since 6.1.0 def initialize super(compose_message("in_memory_collation_not_supported")) end end end end
Version data entries
32 entries across 30 versions & 2 rubygems