From 9552d61f8d3a54bdf97c640d33075e595a43011b Mon Sep 17 00:00:00 2001 From: Christian Risi <75698846+CnF-Gris@users.noreply.github.com> Date: Fri, 26 Sep 2025 18:49:56 +0200 Subject: [PATCH] Added Excetption for when we don't find a delimiter --- Project_Model/Libs/BPE/Errors/DelimiterNotFoundException.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Project_Model/Libs/BPE/Errors/DelimiterNotFoundException.py diff --git a/Project_Model/Libs/BPE/Errors/DelimiterNotFoundException.py b/Project_Model/Libs/BPE/Errors/DelimiterNotFoundException.py new file mode 100644 index 0000000..2823d5d --- /dev/null +++ b/Project_Model/Libs/BPE/Errors/DelimiterNotFoundException.py @@ -0,0 +1,4 @@ +class DelimiterNotFoundException(Exception): + + def __init__(self, *args: object) -> None: + super().__init__(*args) \ No newline at end of file