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

PluginDisabledError.__init__()   A

Complexity

Conditions 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 3
ccs 0
cts 0
cp 0
rs 10
cc 1
crap 2
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