Alex Savatieiev | d48994d | 2018-12-13 12:13:00 +0100 | [diff] [blame^] | 1 | from exceptions import Exception |
| 2 | |
| 3 | |
| 4 | class CiCheckerBaseExceptions(Exception): |
| 5 | pass |
| 6 | |
| 7 | |
| 8 | class CheckerException(CiCheckerBaseExceptions): |
| 9 | def __init__(self, message, *args, **kwargs): |
| 10 | super(CheckerException, self).__init__(message, *args, **kwargs) |
| 11 | # get the trace |
| 12 | # TODO: get and log traceback |
| 13 | |
| 14 | # prettify message |
| 15 | self.message = "CheckerException: {}".format(message) |
| 16 | |
| 17 | |
| 18 | class ConfigException(CheckerException): |
| 19 | def __init__(self, message, *args, **kwargs): |
| 20 | super(ConfigException, self).__init__(message, *args, **kwargs) |
| 21 | self.message = "Configuration error: {}".format(message) |