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.