Exception: Chef::Exceptions::CookbookVersionSelection::InvalidRunListItems

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

Overview

Compound exception: In run_list expansion and resolution, run_list items referred to cookbooks that don’t exist and/or have no versions available.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(message, non_existent_cookbooks, cookbooks_with_no_matching_versions) ⇒ InvalidRunListItems

Returns a new instance of InvalidRunListItems.



139
140
141
142
143
144
# File 'lib/chef/exceptions.rb', line 139

def initialize(message, non_existent_cookbooks, cookbooks_with_no_matching_versions)
  super(message)

  @non_existent_cookbooks = non_existent_cookbooks
  @cookbooks_with_no_matching_versions = cookbooks_with_no_matching_versions
end

Instance Attribute Details

#cookbooks_with_no_matching_versionsObject (readonly)

Returns the value of attribute cookbooks_with_no_matching_versions.



137
138
139
# File 'lib/chef/exceptions.rb', line 137

def cookbooks_with_no_matching_versions
  @cookbooks_with_no_matching_versions
end

#non_existent_cookbooksObject (readonly)

Returns the value of attribute non_existent_cookbooks.



136
137
138
# File 'lib/chef/exceptions.rb', line 136

def non_existent_cookbooks
  @non_existent_cookbooks
end

Instance Method Details

#to_json(*a) ⇒ Object



146
147
148
149
150
151
152
153
# File 'lib/chef/exceptions.rb', line 146

def to_json(*a)
  result = {
    "message" => message,
    "non_existent_cookbooks" => non_existent_cookbooks,
    "cookbooks_with_no_versions" => cookbooks_with_no_matching_versions
  }
  result.to_json(*a)
end