Test Failed
Pull Request — master (#173)
by Jan
02:32
created

oval_graph.exceptions   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 0
eloc 3
dl 0
loc 8
ccs 0
cts 2
cp 0
rs 10
c 0
b 0
f 0
1
'''
2
    This file contains a custom exception
3
'''
4
5
class NotChecked(Exception):
6
    """Raised when rule is notchecked"""
7
    pass
0 ignored issues
show
Unused Code introduced by
Unnecessary pass statement
Loading history...
8