class Mongoid::Errors::InvalidConfigOption

This error is raised when a bad configuration option is attempted to be set.

Public Class Methods

new(name) click to toggle source

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

Calls superclass method
# File lib/mongoid/errors/invalid_config_option.rb, line 19
def initialize(name)
  super(
    compose_message(
      "invalid_config_option",
      { name: name, options: Config.settings.keys.map(&:inspect).join(", ") }
    )
  )
end