diff options
author | Seth Vidal <skvidal@fedoraproject.org> | 2007-09-25 10:41:40 -0400 |
---|---|---|
committer | Seth Vidal <skvidal@fedoraproject.org> | 2007-09-25 10:41:40 -0400 |
commit | 4ce41f6eb4bdef401dd767d48ea98a0883090972 (patch) | |
tree | f116135c24af74d335a16a28babe94215e961321 /minion/codes.py | |
parent | 04d9598cef8cd5501acba95040ee46d73c52dbef (diff) | |
parent | 6bf3d8bee599802c95832cbdae904ffce1053938 (diff) | |
download | func-4ce41f6eb4bdef401dd767d48ea98a0883090972.tar.gz func-4ce41f6eb4bdef401dd767d48ea98a0883090972.tar.xz func-4ce41f6eb4bdef401dd767d48ea98a0883090972.zip |
Merge branch 'master' of ssh://git.fedoraproject.org/git/hosted/func
* 'master' of ssh://git.fedoraproject.org/git/hosted/func:
Renamed server to minion and client to overlord
Diffstat (limited to 'minion/codes.py')
-rwxr-xr-x | minion/codes.py | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/minion/codes.py b/minion/codes.py new file mode 100755 index 0000000..dc0ceac --- /dev/null +++ b/minion/codes.py @@ -0,0 +1,28 @@ +#!/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 +import string +import sys +import traceback + + +class FuncException(exceptions.Exception): + pass + +class InvalidMethodException(FuncException): + pass + +# FIXME: more sub-exceptions maybe |