diff options
author | fuzzyray <fuzzyray@gentoo.org> | 2008-08-27 21:19:40 +0000 |
---|---|---|
committer | fuzzyray <fuzzyray@gentoo.org> | 2008-08-27 21:19:40 +0000 |
commit | ba72586710a700ed76f35d365c645d5108bc5895 (patch) | |
tree | c16903693f2030c7b01b346b29b265dc1a473888 /src/gentoolkit/errors.py | |
parent | Fix has_key() deprecation message. (Bug #232797) (diff) | |
download | gentoolkit-ba72586710a700ed76f35d365c645d5108bc5895.tar.gz gentoolkit-ba72586710a700ed76f35d365c645d5108bc5895.tar.bz2 gentoolkit-ba72586710a700ed76f35d365c645d5108bc5895.zip |
Create the gentoolkit-0.2.4 branch to coincide with the release of gentoolkit-0.2.4
svn path=/branches/gentoolkit-0.2.4/; revision=510
Diffstat (limited to 'src/gentoolkit/errors.py')
-rw-r--r-- | src/gentoolkit/errors.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/gentoolkit/errors.py b/src/gentoolkit/errors.py new file mode 100644 index 0000000..db81721 --- /dev/null +++ b/src/gentoolkit/errors.py @@ -0,0 +1,14 @@ +#! /usr/bin/python2 +# +# Copyright(c) 2004, Karl Trygve Kalleberg <karltk@gentoo.org> +# Copyright(c) 2004, Gentoo Foundation +# +# Licensed under the GNU General Public License, v2 +# +# $Header$ + +class FatalError: + def __init__(self, s): + self._message = s + def get_message(self): + return self._message
\ No newline at end of file |