DeflateError

public enum DeflateError: Error

Error happened during deflate decompression. It may indicate that either the data is damaged or it might not be compressed with DEFLATE at all.

  • wrongUncompressedBlockLengths: length and nlength bytes of uncompressed block were not compatible.
  • wrongBlockType: unsupported block type (not 0, 1 or 2).
  • wrongSymbol: unsupported Huffman tree’s symbol.
  • symbolNotFound: symbol from input data was not found in Huffman tree.