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