summaryrefslogtreecommitdiffstats
path: root/backend.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2008-06-05 14:39:27 -0400
committerChris Lumens <clumens@redhat.com>2008-06-05 14:39:27 -0400
commit4e15268407c353239c55715c5cbffcd25d8fb74f (patch)
treee9a49a95b00cec248edf58db45d3c5fb3a45c9e5 /backend.py
parent494fcc58c247206d3d8ad8cb9f2755266e2ddab4 (diff)
downloadanaconda-4e15268407c353239c55715c5cbffcd25d8fb74f.tar.gz
anaconda-4e15268407c353239c55715c5cbffcd25d8fb74f.tar.xz
anaconda-4e15268407c353239c55715c5cbffcd25d8fb74f.zip
Start an errors.py that contains all these small exception classes.
Diffstat (limited to 'backend.py')
-rw-r--r--backend.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/backend.py b/backend.py
index 08cbdde9d..14848b5c5 100644
--- a/backend.py
+++ b/backend.py
@@ -37,13 +37,6 @@ log = logging.getLogger("anaconda")
import gettext
_ = lambda x: gettext.ldgettext("anaconda", x)
-class NoSuchGroup(Exception):
- def __init__ (self, value):
- self.value = value
-
- def __str__ (self):
- return self.value
-
class AnacondaBackend:
def __init__(self, anaconda):
"""Abstract backend class all backends should inherit from this