class Yarrow::ConfigurationError

Raised when a required config section or property is missing.

Public Class Methods

missing_section(name) click to toggle source
# File lib/yarrow/configuration.rb, line 89
def self.missing_section(name)
  new("Missing config section #{name.to_sym}")
end