| 112 | |
| 113 | |
| 114 | class DiffError(Exception): |
| 115 | def __init__(self, message: str, errs: Optional[list[str]] = None): |
| 116 | super(DiffError, self).__init__(message) |
| 117 | self.errs: list[str] = errs or [] |
| 118 | |
| 119 | |
| 120 | class UnexpectedError(Exception): |
no outgoing calls
no test coverage detected