summaryrefslogtreecommitdiff
path: root/src/exceptions.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/exceptions.py')
-rw-r--r--src/exceptions.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/exceptions.py b/src/exceptions.py
new file mode 100644
index 0000000..1c1b058
--- /dev/null
+++ b/src/exceptions.py
@@ -0,0 +1,3 @@
+class IncompatibleRowLengthError(Exception):
+ def __init__(self, row_len: int):
+ super().__init__(f"Incompatible row length, got {row_len}, expected 3") \ No newline at end of file