| 1 | class SingleMessageError(Exception): |
| 2 | def __init__(self, message): |
| 3 | super().__init__(message) |
| 4 | self.message = message |
| 5 | |
| 6 | def __str__(self): |
| 7 | return self.message |
| 8 | |
| 9 | |
| 10 | class SQLBotDBConnectionError(Exception): |
no outgoing calls
no test coverage detected