commons.exceptions   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 0
eloc 8
dl 0
loc 17
rs 10
c 0
b 0
f 0
ccs 2
cts 2
cp 1
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