| branch | devel |
| changeset 154 | fb614eb7627e |
| parent 135 | f8640c663e3e |
| child 162 | 497d6b9b6914 |
--- a/iro/error.py Mon Feb 13 19:53:34 2012 +0100 +++ b/iro/error.py Mon Feb 13 22:15:41 2012 +0100 @@ -52,8 +52,13 @@ msg = "No valid email: '%s'"%(number) ValidateException.__init__(self, 702, field, msg) +class OfferException(Exception): + pass -class NoRoute(Exception): +class NoRoute(OfferException): + pass + +class NoProvider(OfferException): pass class RejectRecipient(Exception):