diff options
author | Adrian Likins <alikins@redhat.com> | 2007-09-25 11:50:28 -0400 |
---|---|---|
committer | Adrian Likins <alikins@redhat.com> | 2007-09-25 11:50:28 -0400 |
commit | fb7df2a5b7834ead29effb5c60bdc33558546631 (patch) | |
tree | 6c70ccfb037ab621cc69085ba8d5b540753d81dd /minion/codes.py | |
parent | 9c72cbd826528bb64267ba2184ae16099343c7ab (diff) | |
parent | 47100aa2f165b47175af1e1aef736c5769a83169 (diff) | |
download | func-fb7df2a5b7834ead29effb5c60bdc33558546631.tar.gz func-fb7df2a5b7834ead29effb5c60bdc33558546631.tar.xz func-fb7df2a5b7834ead29effb5c60bdc33558546631.zip |
Merge branch 'master' of ssh://git.fedoraproject.org/git/hosted/func
Diffstat (limited to 'minion/codes.py')
-rwxr-xr-x | minion/codes.py | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/minion/codes.py b/minion/codes.py new file mode 100755 index 0000000..c549709 --- /dev/null +++ b/minion/codes.py @@ -0,0 +1,25 @@ +#!/usr/bin/python +""" +func + +Copyright 2007, Red Hat, Inc +See AUTHORS + +This software may be freely redistributed under the terms of the GNU +general public license. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +""" + +import exceptions + + +class FuncException(exceptions.Exception): + pass + +class InvalidMethodException(FuncException): + pass + +# FIXME: more sub-exceptions maybe |