summaryrefslogtreecommitdiff
path: root/lib/chef/exceptions.rb
diff options
context:
space:
mode:
authorAdam Jacob <adam@hjksolutions.com>2008-09-08 17:42:48 -0700
committerAdam Jacob <adam@hjksolutions.com>2008-09-08 17:42:48 -0700
commit7688807e7b9e690e19e48547064b696ee35dde77 (patch)
treeeaa385b4e899148deacaf5457e7399037122788e /lib/chef/exceptions.rb
parentf0177df9fdb9f5098ff850c626e86d69ead412ff (diff)
downloadchef-7688807e7b9e690e19e48547064b696ee35dde77.tar.gz
Refactoring to support a base package class, that package providers can inherit from
Diffstat (limited to 'lib/chef/exceptions.rb')
-rw-r--r--lib/chef/exceptions.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/chef/exceptions.rb b/lib/chef/exceptions.rb
index 9286593b45..a2125e862f 100644
--- a/lib/chef/exceptions.rb
+++ b/lib/chef/exceptions.rb
@@ -21,6 +21,7 @@ class Chef
class FileNotFound < RuntimeError; end
class Package < RuntimeError; end
class SearchIndex < RuntimeError; end
-
+ class Override < RuntimeError; end
+ class UnsupportedAction < RuntimeError; end
end
end \ No newline at end of file