Exception: Inforouter::Errors::MissingConfigOption
- Inherits:
-
InforouterError
- Object
- StandardError
- InforouterError
- Inforouter::Errors::MissingConfigOption
- 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
Instance Method Summary collapse
-
#initialize(name) ⇒ MissingConfigOption
constructor
A new instance of MissingConfigOption.
Methods inherited from InforouterError
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(('missing_config_option', name: name)) end |