# File lib/chef/cookbook/cookbook_collection.rb, line 36
    def initialize(cookbook_versions={})
      super() do |hash, key|
        raise Chef::Exceptions::CookbookNotFound, "Cookbook #{key} not found"
      end
      cookbook_versions.each{ |cookbook_name, cookbook_version| self[cookbook_name] = cookbook_version }
    end