BZip2Error

public enum BZip2Error: Error

Represents an error, which happened during BZip2 decompression. It may indicate that either data is damaged or it might not be compressed with BZip2 at all.

  • Selector is greater than the total number of Huffman tables/groups.

    Declaration

    Swift

    case wrongSelector
  • Computed checksum of uncompressed data doesn’t match the value stored in archive. Associated value of the error contains already decompressed data.

    Declaration

    Swift

    case wrongCRC(Data)