(self, tarinfo, path)
| 759 | |
| 760 | class LinkOutsideDestinationError(FilterError): |
| 761 | def __init__(self, tarinfo, path): |
| 762 | self.tarinfo = tarinfo |
| 763 | self._path = path |
| 764 | super().__init__(f'{tarinfo.name!r} would link to {path!r}, ' |
| 765 | + 'which is outside the destination') |
| 766 | |
| 767 | class LinkFallbackError(FilterError): |
| 768 | def __init__(self, tarinfo, path): |