Macro syntax errors.
| 117 | |
| 118 | |
| 119 | class MacroError(ValueError): |
| 120 | """Macro syntax errors.""" |
| 121 | |
| 122 | def __init__(self, symbol: Optional[str] = None, msg="Error while parsing a macro"): |
| 123 | self.symbol = symbol |
| 124 | super().__init__(msg) |
| 125 | |
| 126 | |
| 127 | def pydantify(error: type): |
no outgoing calls
no test coverage detected