equal
deleted
inserted
replaced
49 class InvalidMail(ValidateException): |
49 class InvalidMail(ValidateException): |
50 def __init__(self, number,field=None): |
50 def __init__(self, number,field=None): |
51 self.number = number |
51 self.number = number |
52 msg = "No valid email: '%s'"%(number) |
52 msg = "No valid email: '%s'"%(number) |
53 ValidateException.__init__(self, 702, field, msg) |
53 ValidateException.__init__(self, 702, field, msg) |
|
54 |
|
55 |
|
56 class NoRoute(Exception): |
|
57 pass |
|
58 |
|
59 class RejectRecipient(Exception): |
|
60 pass |