LZMAError

public enum LZMAError: Error

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

  • Unable to perfrom repeat-distance decoding because there is nothing to repeat.

    Declaration

    Swift

    case windowIsEmpty
  • The number of bytes to repeat is greater than the amount bytes that is left to decode.

    Declaration

    Swift

    case repeatWillExceed