This commit is contained in:
Emile Clark-Boman 2025-06-24 16:42:17 +10:00
commit 09d4c52043
19 changed files with 542 additions and 0 deletions

3
sandbox/exceptions.py Normal file
View file

@ -0,0 +1,3 @@
class PromptParseError(Exception):
def __init__(self, message: str) -> None:
super().__init__(message)