This error is raised when a bad configuration option is attempted to be set.
Create the new error.
@example Create the new error.
InvalidConfigOption.new(:name, [ :option ])
@param [ Symbol, String ] name The attempted config option name.
@since 3.0.0
# File lib/mongoid/errors/invalid_config_option.rb, line 16 def initialize(name) super( compose_message( "invalid_config_option", { name: name, options: Config.settings.keys.map(&:inspect).join(", ") } ) ) end
Generated with the Darkfish Rdoc Generator 2.