Browse Source

Fixup: add exceptions

StrayWarrior 1 month ago
parent
commit
2562f8f7cd
1 changed files with 3 additions and 0 deletions
  1. 3 0
      pqai_agent/exceptions.py

+ 3 - 0
pqai_agent/exceptions.py

@@ -0,0 +1,3 @@
+class NoRetryException(Exception):
+    def __init__(self, *args, **kwargs):
+        super().__init__(*args, **kwargs)