| Total Complexity | 0 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | from il2fb.commons.exceptions import IL2FBException |
||
| 2 | |||
| 3 | from ._utils import export |
||
| 4 | |||
| 5 | |||
| 6 | @export |
||
| 7 | class IL2FBRegimentException(IL2FBException): |
||
| 8 | ... |
||
| 9 | |||
| 10 | |||
| 11 | @export |
||
| 12 | class IL2FBRegimentAttributeError(AttributeError, IL2FBException): |
||
| 13 | ... |
||
| 14 | |||
| 15 | |||
| 16 | @export |
||
| 17 | class IL2FBRegimentLookupError(LookupError, IL2FBException): |
||
| 18 | ... |
||
| 19 | |||
| 20 | |||
| 21 | @export |
||
| 22 | class IL2FBRegimentDataSourceNotFound(IL2FBRegimentLookupError): |
||
| 23 | ... |
||
| 24 |