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