class EasyConf::LookupNameConflictError

Public Class Methods

new(name) click to toggle source
Calls superclass method
# File lib/easy_conf/errors/lookup_name_conflict_error.rb, line 4
def initialize(name)
  message = "`#{name}` placeholder is conflicting with the internal methods " \
            "of the `EasyConf::Configuration` class. Register lookup with a " \
            "different name to solve this issue!"

  super(message)
end