summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeth Vargo <sethvargo@gmail.com>2014-11-03 19:22:16 -0500
committerBryan McLellan <btm@loftninjas.org>2014-12-15 13:49:14 -0500
commit1e71a0388df573c78f424fb202f1e373e2a1e770 (patch)
tree868035a60929c11d1256bcd951347ab6170d5453
parentdccc5d1a61597e7e34ed367d191c45b70f9aa18f (diff)
downloadchef-1e71a0388df573c78f424fb202f1e373e2a1e770.tar.gz
Use a real error class when metadata is not found
-rw-r--r--lib/chef/exceptions.rb5
-rw-r--r--lib/chef/knife/cookbook_site_install.rb2
2 files changed, 6 insertions, 1 deletions
diff --git a/lib/chef/exceptions.rb b/lib/chef/exceptions.rb
index bf33cb9b52..f5d91c24a6 100644
--- a/lib/chef/exceptions.rb
+++ b/lib/chef/exceptions.rb
@@ -150,6 +150,11 @@ class Chef
class IllegalVersionConstraint < NotImplementedError; end
class MetadataNotValid < StandardError; end
+ class MetadataNotFound < StandardError
+ def initialize
+ super "No metadata.rb or metadata.json!"
+ end
+ end
# File operation attempted but no permissions to perform it
class InsufficientPermissions < RuntimeError; end
diff --git a/lib/chef/knife/cookbook_site_install.rb b/lib/chef/knife/cookbook_site_install.rb
index 865f806593..3242dd4297 100644
--- a/lib/chef/knife/cookbook_site_install.rb
+++ b/lib/chef/knife/cookbook_site_install.rb
@@ -179,7 +179,7 @@ class Chef
return md
end
- raise "No metadata.rb or metadata.json!"
+ raise Chef::Exceptions::MetadataNotFound
end
end
end