Control flow exception to signal that a module was not found.
| 2580 | |
| 2581 | |
| 2582 | class ModuleNotFound(Exception): |
| 2583 | """Control flow exception to signal that a module was not found.""" |
| 2584 | |
| 2585 | def __init__(self, reason: int = SuppressionReason.NOT_FOUND) -> None: |
| 2586 | self.reason = reason |
| 2587 | |
| 2588 | |
| 2589 | @final |
no outgoing calls
no test coverage detected
searching dependent graphs…