class Ant::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/ant/configs/configuration_manager.rb, line 170
def initialize(keys)
  @keys = keys
  super('There are keys missing to be configured')
end