| 321 | |
| 322 | |
| 323 | class CacheLinkError(DvcException): |
| 324 | SUPPORT_LINK = "See {} for more information.".format( |
| 325 | format_link("https://dvc.org/doc/user-guide/troubleshooting#cache-types") |
| 326 | ) |
| 327 | |
| 328 | def __init__(self, fs_paths): |
| 329 | msg = "No possible cache link types for '{}'. {}".format( |
| 330 | ", ".join(fs_paths), self.SUPPORT_LINK |
| 331 | ) |
| 332 | super().__init__(msg) |
| 333 | self.fs_paths = fs_paths |
| 334 | |
| 335 | |
| 336 | class PrettyDvcException(DvcException): |
no test coverage detected