(self, recognizer:Parser)
| 127 | class InputMismatchException(RecognitionException): |
| 128 | |
| 129 | def __init__(self, recognizer:Parser): |
| 130 | super().__init__(recognizer=recognizer, input=recognizer.getInputStream(), ctx=recognizer._ctx) |
| 131 | self.offendingToken = recognizer.getCurrentToken() |
| 132 | |
| 133 | |
| 134 | # A semantic predicate failed during validation. Validation of predicates |
nothing calls this directly
no test coverage detected