Sha256: 01c865088380dc9d0e3857558c8dbdf449ed7170804149e62fb007f98625a502
Contents?: true
Size: 447 Bytes
Versions: 27
Compression:
Stored size: 447 Bytes
Contents
# frozen_string_literal: true # encoding: utf-8 module Mongoid module Errors # This error is raised when no clients exists in the database # configuration. class NoClientsConfig < MongoidError # Create the new error. # # @example Create the error. # NoClientsConfig.new # # @since 3.0.0 def initialize super(compose_message("no_clients_config", {})) end end end end
Version data entries
27 entries across 27 versions & 2 rubygems