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.
-
Properties’ byte is greater than 225.
Declaration
Swift
case wrongProperties -
Unable to initialize RanderDecorer.
Declaration
Swift
case rangeDecoderInitError -
Size of uncompressed data hit specified limit in the middle of decoding.
Declaration
Swift
case exceededUncompressedSize -
Unable to perfrom repeat-distance decoding because there is nothing to repeat.
Declaration
Swift
case windowIsEmpty -
End of stream marker is reached, but range decoder is in incorrect state.
Declaration
Swift
case rangeDecoderFinishError -
The number of bytes to repeat is greater than the amount bytes that is left to decode.
Declaration
Swift
case repeatWillExceed -
The amount of already decoded bytes is smaller than repeat length.
Declaration
Swift
case notEnoughToRepeat
View on GitHub
LZMAError Enumeration Reference