Error during parsing.
| 124 | |
| 125 | |
| 126 | class ParseError(Exception): |
| 127 | """Error during parsing.""" |
| 128 | |
| 129 | def __init__(self, message: str, line: int, column: int): |
| 130 | self.message = message |
| 131 | self.line = line |
| 132 | self.column = column |
| 133 | super().__init__(f"Line {line}, Column {column}: {message}") |
| 134 | |
| 135 | |
| 136 | class Parser: |
no outgoing calls
no test coverage detected