(self, path, repo, dvc_only=False)
| 291 | ) |
| 292 | |
| 293 | def __init__(self, path, repo, dvc_only=False): |
| 294 | msg = self.default_msg if not dvc_only else self.default_msg_dvc_only |
| 295 | super().__init__(msg.format(path, repo)) |
| 296 | self.dvc_only = dvc_only |
| 297 | |
| 298 | |
| 299 | class URLMissingError(DvcException): |