lib/lookbook/support/errors/config_error.rb



module Lookbook
  class ConfigError < Error
    def initialize(msg = nil, scope: "config", **kwargs)
      super(msg, scope: scope, **kwargs)
    end
  end
end