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.

Constant Summary

Constants inherited from InforouterError

InforouterError::BASE_KEY

Instance Method Summary collapse

Methods inherited from InforouterError

#compose_message

Constructor Details

#initialize(name) ⇒ MissingConfigOption

Returns a new instance of MissingConfigOption.

Parameters:

  • name (String)


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