class Kybus::Configuration::ConfigurationManager::MissingConfigs

Exception raised when a configuration was not set

Attributes

keys[R]

Keys that were not loaded correctly

Public Class Methods

new(keys) click to toggle source
Calls superclass method
# File lib/kybus/configs/configuration_manager.rb, line 172
def initialize(keys)
  @keys = keys
  super('There are keys missing to be configured')
end