Sha256: af602169a52a882a7053c923b66a8a8c0520fb58adb84b1a0da74ceff6306744
Contents?: true
Size: 510 Bytes
Versions: 29
Compression:
Stored size: 510 Bytes
Contents
# frozen_string_literal: true module Mongoid module Errors # This error is raised when a bad configuration file is attempted to be # loaded. class InvalidConfigFile < MongoidError # Create the new error. # # @param [ String ] path The path of the config file used. # # @api private def initialize(path) super( compose_message( "invalid_config_file", { path: path } ) ) end end end end
Version data entries
29 entries across 29 versions & 1 rubygems