Exception: Chef::Exceptions::Secret::InvalidFetcherService

Inherits:
RuntimeError
  • Object
show all
Defined in:
lib/chef/exceptions.rb

Instance Method Summary collapse

Constructor Details

#initialize(given, fetcher_service_names) ⇒ InvalidFetcherService

Returns a new instance of InvalidFetcherService.



301
302
303
# File 'lib/chef/exceptions.rb', line 301

def initialize(given, fetcher_service_names)
  super("#{given} is not a supported secrets service.  Supported services are: :#{fetcher_service_names.join(" :")}")
end