Base exception such that it can be raised as context for other errors.
| 31 | |
| 32 | |
| 33 | class LoaderError(BaseException): |
| 34 | """Base exception such that it can be raised as context for other errors.""" |
| 35 | |
| 36 | def __init__(self, message: str) -> None: |
| 37 | self.message = f"{message}\n{INCONSISTENT_CACHE_BOILER_PLATE}" |
| 38 | super().__init__(message) |
| 39 | |
| 40 | |
| 41 | class LoaderPartial: |
no outgoing calls
no test coverage detected
searching dependent graphs…