From 996d171e1132360d0adad3cbd56e6de8e257cce3 Mon Sep 17 00:00:00 2001 From: Alex Lebens Date: Tue, 15 Jul 2025 22:01:43 -0500 Subject: [PATCH] add exception --- lib/exceptions.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/exceptions.py b/lib/exceptions.py index 2ba066e..e6631d5 100644 --- a/lib/exceptions.py +++ b/lib/exceptions.py @@ -4,3 +4,7 @@ class AlreadyExistsException(Exception): class NotFoundException(Exception): pass + + +class ConflictException(Exception): + pass