Sha256: d770f55c67a8dc74caf53247a1bc7e902a750c194f8b4b5d6ce7c6760d29933c
Contents?: true
Size: 535 Bytes
Versions: 29
Compression:
Stored size: 535 Bytes
Contents
# frozen_string_literal: true module Mongoid module Errors # Raised when executing a map/reduce without specifying the output # location. class NoMapReduceOutput < MongoidError # Create the new error. # # @example Create the new error. # NoMapReduceOutput.new({ map: "" }) # # @param [ Hash ] command The map/reduce command. def initialize(command) super( compose_message("no_map_reduce_output", { command: command }) ) end end end end
Version data entries
29 entries across 29 versions & 1 rubygems