diff -r b7a7e566833c -r ceb700bc4a80 VirtualMailManager/Exceptions.py --- 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)