For errors more severe than the norm. "DETAIL" may be much more verbose, and there is likely no hint.
| 46 | |
| 47 | |
| 48 | class UserCritical(UserException): |
| 49 | """ |
| 50 | For errors more severe than the norm. |
| 51 | |
| 52 | "DETAIL" may be much more verbose, and there is likely no hint. |
| 53 | |
| 54 | """ |
| 55 | |
| 56 | def __init__(self, *args, **kwargs): |
| 57 | UserException.__init__(self, *args, **kwargs) |
| 58 | self.severity = CRITICAL |
no outgoing calls
no test coverage detected