Sha256: 3350d7a5998595e6b90d821eb73f16333c16624ac1ebd191c081f9918bb35c13
Contents?: true
Size: 399 Bytes
Versions: 29
Compression:
Stored size: 399 Bytes
Contents
# frozen_string_literal: true 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 def initialize super(compose_message("calling_document_find_with_nil_is_invalid", {})) end end end end
Version data entries
29 entries across 29 versions & 1 rubygems