| Total Complexity | 0 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | from ._utils import export |
||
| 2 | 1 | ||
| 3 | |||
| 4 | @export |
||
| 5 | class IL2FBException(Exception): |
||
| 6 | 1 | """Generic exception for 'il2fb' namespace.""" |
|
| 7 | |||
| 8 | |||
| 9 | @export |
||
| 10 | class IL2FBLookupError(LookupError, IL2FBException): |
||
| 11 | """Generic lookup error for 'il2fb' namespace.""" |
||
| 12 | |||
| 13 | |||
| 14 | @export |
||
| 15 | class IL2FBParsingException(IL2FBException): |
||
| 16 | """Generic parsing exception for 'il2fb' namespace.""" |
||
| 17 |