Completed
Push — master ( 23b608...8098ec )
by Thomas
01:16
created

ppp_libmodule.BadGateway

Complexity

Total Complexity 0

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Test Coverage

Coverage 100%
Metric Value
dl 0
loc 4
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