Test Failed
Push — develop ( a80574...5ed66c )
by Dean
02:36
created

PluginDisabledError   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
c 1
b 0
f 0
dl 0
loc 4
ccs 0
cts 0
cp 0
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __init__() 0 3 1
1 1
class AccountAuthenticationError(Exception):
2 1
    pass
3
4
5
class PluginDisabledError(Exception):
6
    def __init__(self):
7
        super(PluginDisabledError, self).__init__(
8
            'Plugin has been automatically disabled, check the plugin logs for more information'
9
        )
10