Conditions | 1 |
Total Lines | 8 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | from typing import Optional |
||
12 | def __init__(self, specific: str): |
||
13 | """ |
||
14 | Exception which gets thrown if an exception wasn't handled. |
||
15 | |||
16 | If this exception gets thrown please create an issue on our github. |
||
17 | """ |
||
18 | super(UnhandledException, self).__init__( |
||
19 | specific + " Please report this to the library devs." |
||
20 | ) |
||
34 |