imp/sandbox/exceptions.py
2025-06-24 16:42:17 +10:00

3 lines
115 B
Python

class PromptParseError(Exception):
def __init__(self, message: str) -> None:
super().__init__(message)