Sha256: 27ecb0fcb0044e06da3e4146442102c2824739f9de537efec000e9fd23ee868c
Contents?: true
Size: 446 Bytes
Versions: 27
Compression:
Stored size: 446 Bytes
Contents
# frozen_string_literal: true # encoding: utf-8 module Mongoid module Errors # Raised when invalid arguments are passed to #find. class InvalidFind < MongoidError # Create the new invalid find error. # # @example Create the error. # InvalidFind.new # # @since 2.2.0 def initialize super(compose_message("calling_document_find_with_nil_is_invalid", {})) end end end end
Version data entries
27 entries across 27 versions & 2 rubygems