diff -r 96761c442dcf -r 7e3ce56f49e6 VirtualMailManager/Exceptions.py --- a/VirtualMailManager/Exceptions.py Fri Jan 18 20:25:05 2008 +0000 +++ b/VirtualMailManager/Exceptions.py Sat Feb 02 19:48:17 2008 +0000 @@ -1,6 +1,6 @@ #!/usr/bin/env python # -*- coding: UTF-8 -*- -# opyright 2007-2008 VEB IT +# Copyright 2007-2008 VEB IT # See COPYING for distribution information. # $Id$ @@ -43,6 +43,17 @@ VMMException.__init__(self, msg) class VMMAliasException(VMMException): - """Ausnahmeklasse für Aliasausnamhem""" + """Exception class for Alias exceptions""" def __init__(self, msg): VMMException.__init__(self, msg) + +class VMMMailLocationException(VMMException): + """Exception class for MailLocation exceptions""" + def __init__(self, msg): + VMMException.__init__(self, msg) + +class VMMTransportException(VMMException): + """Exception class for Transport exceptions""" + def __init__(self, msg): + VMMException.__init__(self, msg) +