VirtualMailManager/Exceptions.py
changeset 32 ceb700bc4a80
parent 8 7e3ce56f49e6
child 47 191d5a5adc4a
--- a/VirtualMailManager/Exceptions.py	Sat May 10 02:56:33 2008 +0000
+++ b/VirtualMailManager/Exceptions.py	Tue May 13 03:20:02 2008 +0000
@@ -14,31 +14,31 @@
 __date__ = '$Date$'.split()[1]
 
 class VMMException(Exception):
-    """Ausnahmeklasse für die Klasse VirtualMailManager"""
+    """Exception class for VirtualMailManager exceptions"""
     def __init__(self, msg):
         Exception.__init__(self, msg)
 
 class VMMConfigException(Exception):
-    """Ausnahmeklasse für Konfigurationssausnamhem"""
+    """Exception class for Configurtion exceptions"""
     def __init__(self, msg):
         Exception.__init__(self, msg)
 
 class VMMPermException(Exception):
-    """Ausnahmeklasse für Berechtigungsausnamhem"""
+    """Exception class for permissions exceptions"""
     pass
 
 class VMMNotRootException(Exception):
-    """Ausnahmeklasse für unberechtige Zugriffe"""
+    """Exception class for non-root exceptions"""
     def __init__(self, msg):
         Exception.__init__(self, msg)
 
 class VMMDomainException(VMMException):
-    """Ausnahmeklasse für Domainausnamhem"""
+    """Exception class for Domain exceptions"""
     def __init__(self, msg):
         VMMException.__init__(self, msg)
 
 class VMMAccountException(VMMException):
-    """Ausnahmeklasse für Accountausnamhem"""
+    """Exception class for Account exceptions"""
     def __init__(self, msg):
         VMMException.__init__(self, msg)