Sha256: 63d7bfc5c8fc331c52968ce398e240ffbd78eb5777908994122f05766d964bd7
Contents?: true
Size: 400 Bytes
Versions: 29
Compression:
Stored size: 400 Bytes
Contents
# frozen_string_literal: true 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 def initialize super(compose_message("no_clients_config", {})) end end end end
Version data entries
29 entries across 29 versions & 1 rubygems