Passed
Push — dev ( 3fa5c0 )
by Olivier
03:18
created

opcua.common.UaStatusCodeError

Complexity

Total Complexity 0

Size/Duplication

Total Lines 2
Duplicated Lines 0 %

Test Coverage

Coverage 100%
Metric Value
dl 0
loc 2
ccs 2
cts 2
cp 1
wmc 0
1
"""
2
Define exceptions to be raised at various places in the stack
3
"""
4
5
6 1
class UaError(RuntimeError):
7 1
    pass
8
9
10 1
class UaStatusCodeError(UaError):
11 1
    pass
12
13
14 1
class UaStringParsingError(UaError):
15
    pass
16