VirtualMailManager/Exceptions.py
changeset 47 191d5a5adc4a
parent 32 ceb700bc4a80
child 48 0d5f58f8b8f5
equal deleted inserted replaced
46:7ece710c559d 47:191d5a5adc4a
    35 class VMMDomainException(VMMException):
    35 class VMMDomainException(VMMException):
    36     """Exception class for Domain exceptions"""
    36     """Exception class for Domain exceptions"""
    37     def __init__(self, msg):
    37     def __init__(self, msg):
    38         VMMException.__init__(self, msg)
    38         VMMException.__init__(self, msg)
    39 
    39 
       
    40 class VMMDomainAliasException(VMMException):
       
    41     """Exception class for DomainAlias exceptions"""
       
    42     def __init__(self, msg):
       
    43         VMMException.__init__(self, msg)
       
    44 
    40 class VMMAccountException(VMMException):
    45 class VMMAccountException(VMMException):
    41     """Exception class for Account exceptions"""
    46     """Exception class for Account exceptions"""
    42     def __init__(self, msg):
    47     def __init__(self, msg):
    43         VMMException.__init__(self, msg)
    48         VMMException.__init__(self, msg)
    44 
    49