Completed
Push — master ( 5ff98e...08e4db )
by Olivier
68:12 queued 62:14
created

opcua.common.UAStringParsingError

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