summaryrefslogtreecommitdiff
path: root/lib/chef/exceptions.rb
diff options
context:
space:
mode:
authordanielsdeleo <dan@getchef.com>2014-03-14 13:11:00 -0700
committerdanielsdeleo <dan@getchef.com>2014-03-14 14:09:37 -0700
commit33b2ae7adef917ddcafb93f3bca6a28d0f750c03 (patch)
treee664df769ecce7e31824bc3db0129760749fd761 /lib/chef/exceptions.rb
parentaa9585f2f7d214c667fcba4cbf61e7e8114484ab (diff)
downloadchef-33b2ae7adef917ddcafb93f3bca6a28d0f750c03.tar.gz
Change missing dependency from hard error to warning for now.
Diffstat (limited to 'lib/chef/exceptions.rb')
-rw-r--r--lib/chef/exceptions.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/exceptions.rb b/lib/chef/exceptions.rb
index 8df49b9303..bd99cb3ebd 100644
--- a/lib/chef/exceptions.rb
+++ b/lib/chef/exceptions.rb
@@ -76,7 +76,7 @@ class Chef
class CookbookNotFoundInRepo < ArgumentError; end
class RecipeNotFound < ArgumentError; end
class AttributeNotFound < RuntimeError; end
- class MissingCookbookDependency < StandardError; end
+ class MissingCookbookDependency < StandardError; end # CHEF-5120
class InvalidCommandOption < RuntimeError; end
class CommandTimeout < RuntimeError; end
class RequestedUIDUnavailable < RuntimeError; end