Sha256: 4f2b11fbffafbaf86b2ac2834e6f851b41bd84d3d8dc59ca06a47818d2929ab5
Contents?: true
Size: 530 Bytes
Versions: 27
Compression:
Stored size: 530 Bytes
Contents
# frozen_string_literal: true # 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
27 entries across 27 versions & 2 rubygems