imp/sandbox/exceptions.py

4 lines
115 B
Python
Raw Permalink Normal View History

2025-06-24 16:42:17 +10:00
class PromptParseError(Exception):
def __init__(self, message: str) -> None:
super().__init__(message)