class Chef::Exceptions::MetadataNotFound
Attributes
cookbook_name[R]
install_path[R]
Public Class Methods
new(install_path, cookbook_name)
click to toggle source
Calls superclass method
# File lib/chef/exceptions.rb, line 198 def initialize(install_path, cookbook_name) @install_path = install_path @cookbook_name = cookbook_name super "No metadata.rb or metadata.json found for cookbook #{@cookbook_name} in #{@install_path}" end