changeset 47 | 191d5a5adc4a |
parent 32 | ceb700bc4a80 |
child 48 | 0d5f58f8b8f5 |
--- a/VirtualMailManager/Exceptions.py Sat Aug 16 02:48:36 2008 +0000 +++ b/VirtualMailManager/Exceptions.py Mon Aug 18 01:56:31 2008 +0000 @@ -37,6 +37,11 @@ def __init__(self, msg): VMMException.__init__(self, msg) +class VMMDomainAliasException(VMMException): + """Exception class for DomainAlias exceptions""" + def __init__(self, msg): + VMMException.__init__(self, msg) + class VMMAccountException(VMMException): """Exception class for Account exceptions""" def __init__(self, msg):