summaryrefslogtreecommitdiff
path: root/src/exceptions.py
blob: 1c1b05820b2cc898d09ff2de28e8c23b98122585 (plain)
1
2
3
class IncompatibleRowLengthError(Exception):
    def __init__(self, row_len: int):
        super().__init__(f"Incompatible row length, got {row_len}, expected 3")