Raised when a dirty app is not found.
| 127 | |
| 128 | |
| 129 | class DirtyAppNotFoundError(DirtyAppError): |
| 130 | """Raised when a dirty app is not found.""" |
| 131 | |
| 132 | def __init__(self, app_path): |
| 133 | super().__init__(f"Dirty app not found: {app_path}", app_path=app_path) |
| 134 | |
| 135 | |
| 136 | class DirtyNoWorkersAvailableError(DirtyError): |
no outgoing calls
no test coverage detected