diff -r d08cda9d7c1a -r 9b39f828aa8a VirtualMailManager/Exceptions.py --- a/VirtualMailManager/Exceptions.py Tue Jan 08 12:30:20 2008 +0000 +++ b/VirtualMailManager/Exceptions.py Tue Jan 08 21:35:40 2008 +0000 @@ -26,7 +26,8 @@ class VMMNotRootException(Exception): """Ausnahmeklasse für unberechtige Zugriffe""" - pass + def __init__(self, msg): + Exception.__init__(self, msg) class VMMDomainException(VMMException): """Ausnahmeklasse für Domainausnamhem"""