Exception for unreadable tar archives.
| 272 | """General exception for extract errors.""" |
| 273 | pass |
| 274 | class ReadError(TarError): |
| 275 | """Exception for unreadable tar archives.""" |
| 276 | pass |
| 277 | class CompressionError(TarError): |
| 278 | """Exception for unavailable compression methods.""" |
| 279 | pass |