(self, fs_paths)
| 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): |