regiments.exceptions   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 24
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 15
dl 0
loc 24
rs 10
c 0
b 0
f 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