diff options
author | Adam Jacob <adam@hjksolutions.com> | 2008-09-08 17:42:48 -0700 |
---|---|---|
committer | Adam Jacob <adam@hjksolutions.com> | 2008-09-08 17:42:48 -0700 |
commit | 7688807e7b9e690e19e48547064b696ee35dde77 (patch) | |
tree | eaa385b4e899148deacaf5457e7399037122788e /lib/chef/exceptions.rb | |
parent | f0177df9fdb9f5098ff850c626e86d69ead412ff (diff) | |
download | chef-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.rb | 3 |
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 |