InvalidConfig
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 3
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 2
Bugs 0 Features 0
Metric Value
c 2
b 0
f 0
dl 0
loc 3
ccs 2
cts 2
cp 1
wmc 0
1
"""Exceptions of the PPP modules."""
2
3 1
class ClientError(Exception):
4
    """Exception raised by the module for showing an error to the
5
    client."""
6 1
    pass
7
8 1
class BadGateway(Exception):
9
    """Exception raised by the router when an error from a called
10
    module has been detected."""
11 1
    pass
12
13 1
class InvalidConfig(Exception):
14
    """Exception raised when there is an error in the config."""
15
    pass
16