Method
__init__
(self, path, external_repo_path, external_repo_url)
Source from the content-addressed store, hash-verified
| 268 | |
| 269 | class NoOutputInExternalRepoError(DvcException): |
| 270 | def __init__(self, path, external_repo_path, external_repo_url): |
| 271 | from dvc.utils import relpath |
| 272 | |
| 273 | super().__init__( |
| 274 | f"Output {relpath(path, external_repo_path)!r} " |
| 275 | f"not found in target repository '{external_repo_url}'" |
| 276 | ) |
| 277 | |
| 278 | |
| 279 | class HTTPError(DvcException): |
Callers
nothing calls this directly
Tested by
no test coverage detected