Sha256: 3592e2363e9730ba8a91573c1abf0daac2a072394c7786f3555acfcea5f7873a
Contents?: true
Size: 483 Bytes
Versions: 27
Compression:
Stored size: 483 Bytes
Contents
# frozen_string_literal: true 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 def initialize super(compose_message("in_memory_collation_not_supported")) end end end end
Version data entries
27 entries across 27 versions & 1 rubygems