Sha256: e2ee4533c14123e780503f9307014096305837ff23ce346659a06c362dd8d917
Contents?: true
Size: 551 Bytes
Versions: 105
Compression:
Stored size: 551 Bytes
Contents
# encoding: utf-8 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. # # @since 3.0.0 def initialize(command) super( compose_message("no_map_reduce_output", { command: command }) ) end end end end
Version data entries
105 entries across 100 versions & 7 rubygems