| 5 | # TODO: add more exception types? |
| 6 | |
| 7 | class BaseException (Exception): |
| 8 | def __init__ (self, message = ''): Exception.__init__ (self, message) |
| 9 | |
| 10 | class UserError (BaseException): |
| 11 | def __init__ (self, message = ''): BaseException.__init__ (self, message) |
no outgoing calls
no test coverage detected