3 lines
115 B
Python
3 lines
115 B
Python
class PromptParseError(Exception):
|
|
def __init__(self, message: str) -> None:
|
|
super().__init__(message)
|