Added Excetption for when we don't find a delimiter

This commit is contained in:
Christian Risi 2025-09-26 18:49:56 +02:00
parent be8a87ce01
commit 9552d61f8d

View File

@ -0,0 +1,4 @@
class DelimiterNotFoundException(Exception):
def __init__(self, *args: object) -> None:
super().__init__(*args)