Exception: Inforouter::Errors::MissingConfigOption

Inherits:
InforouterError
  • Object
show all
Defined in:
lib/inforouter/errors/missing_config_option_error.rb

Overview

This error is raised when a configuration option is missing.

Instance Method Summary collapse

Constructor Details

#initialize(name) ⇒ MissingConfigOption

Returns a new instance of MissingConfigOption.



7
8
9
# File 'lib/inforouter/errors/missing_config_option_error.rb', line 7

def initialize(name)
  super(compose_message('missing_config_option', :name => name))
end