summaryrefslogtreecommitdiff
path: root/src/exceptions.py
diff options
context:
space:
mode:
authorHombreLaser <sebastian-440@live.com>2024-03-12 11:27:28 -0600
committerHombreLaser <sebastian-440@live.com>2024-03-12 11:27:28 -0600
commit50dbd9007c03f3c0557ea264706216016971d1b3 (patch)
tree45b0953886eed6a82e1e07e28902e3ed21ee12be /src/exceptions.py
parent24f30d7df1dae5a40c88cd2041aa4b91057bdaf7 (diff)
Añade table.py
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