(self, output, repo=None)
| 67 | """ |
| 68 | |
| 69 | def __init__(self, output, repo=None): |
| 70 | from dvc.utils import relpath |
| 71 | |
| 72 | self.output = output |
| 73 | self.repo = repo |
| 74 | super().__init__( |
| 75 | f"Unable to find DVC file with output {relpath(self.output)!r}" |
| 76 | ) |
| 77 | |
| 78 | |
| 79 | class StageNotFoundError(DvcException): |