equal
deleted
inserted
replaced
45 class VMMDomainException(VMMException): |
45 class VMMDomainException(VMMException): |
46 """Exception class for Domain exceptions""" |
46 """Exception class for Domain exceptions""" |
47 def __init__(self, msg, code): |
47 def __init__(self, msg, code): |
48 VMMException.__init__(self, msg, code) |
48 VMMException.__init__(self, msg, code) |
49 |
49 |
50 class VMMDomainAliasException(VMMException): |
50 class VMMAliasDomainException(VMMException): |
51 """Exception class for DomainAlias exceptions""" |
51 """Exception class for AliasDomain exceptions""" |
52 def __init__(self, msg, code): |
52 def __init__(self, msg, code): |
53 VMMException.__init__(self, msg, code) |
53 VMMException.__init__(self, msg, code) |
54 |
54 |
55 class VMMAccountException(VMMException): |
55 class VMMAccountException(VMMException): |
56 """Exception class for Account exceptions""" |
56 """Exception class for Account exceptions""" |