| 218 | |
| 219 | |
| 220 | class FileMissingError(DvcException): |
| 221 | def __init__(self, path, hint=None): |
| 222 | self.path = path |
| 223 | hint = "" if hint is None else f". {hint}" |
| 224 | super().__init__(f"Can't find '{path}' neither locally nor on remote{hint}") |
| 225 | |
| 226 | |
| 227 | class FileTransferError(DvcException): |