Sha256: d8c1f9396a3a855cd84c021f88a8f3de11cca9a92bc062deeb48f24d2401919e
Contents?: true
Size: 573 Bytes
Versions: 23
Compression:
Stored size: 573 Bytes
Contents
# frozen_string_literal: true # encoding: utf-8 module Mongoid module Errors # This error is raised when attempting to create a new client that does # not have a named configuration. class NoClientConfig < MongoidError # Create the new error. # # @example Create the error. # NoClientConfig.new(:analytics) # # @param [ String | Symbol ] name The name of the client. # # @since 3.0.0 def initialize(name) super(compose_message("no_client_config", { name: name })) end end end end
Version data entries
23 entries across 23 versions & 2 rubygems