EncoderError   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
c 2
b 0
f 0
dl 0
loc 5
rs 10
wmc 0
1
"""
2
Custom errors of encoders
3
"""
4
5
6
class EncoderError(Exception):
7
    """
8
    Error during encoding
9
    """
10
    pass
11