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