| Total Complexity | 2 |
| Total Lines | 6 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | class ConfError(Exception): |
||
| 2 | def __init__(self, error): |
||
| 3 | self.parameter = error |
||
| 4 | |||
| 5 | def __str__(self): |
||
| 6 | return repr(self.parameter) |
||
| 7 |