equal
deleted
inserted
replaced
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 |