ConfError   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 6
rs 10
c 0
b 0
f 0
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __str__() 0 2 1
A __init__() 0 2 1
1
class ConfError(Exception):
2
	def __init__(self, error):
3
		self.parameter = error
4
5
	def __str__(self):
6
		return repr(self.parameter)
7