SevenZipError
public enum SevenZipError : Error
                Represents an error which happened while processing a 7-Zip container. It may indicate that either container is damaged or it might not be 7-Zip container at all.
- 
                  
                  
Wrong container’s signature.
Declaration
Swift
case wrongSignature - 
                  
                  
Unsupported version of container’s format.
Declaration
Swift
case wrongFormatVersion - 
                  
                  
CRC either of one of the files from the container or one of the container’s strucutures is incorrect.
Declaration
Swift
case wrongCRC - 
                  
                  
Size either of one of the files from the container or one of the container’s strucutures is incorrect.
Declaration
Swift
case wrongSize - 
                  
                  
Files have StartPos property. This feature isn’t supported.
Declaration
Swift
case startPosNotSupported - 
                  
                  
External feature isn’t supported.
Declaration
Swift
case externalNotSupported - 
                  
                  
Coders with multiple in and/or out streams aren’t supported.
Declaration
Swift
case multiStreamNotSupported - 
                  
                  
Additional streams feature isn’t supported.
Declaration
Swift
case additionalStreamsNotSupported - 
                  
                  
Entry is compressed using unsupported compression method.
Declaration
Swift
case compressionNotSupported - 
                  
                  
Entry or container’s header is encrypted. This feature isn’t supported.
Declaration
Swift
case encryptionNotSupported - 
                  
                  
Unknown/incorrect internal 7-Zip structure was encountered or a required internal structure is missing.
Declaration
Swift
case internalStructureError 
            View on GitHub
          
      SevenZipError Enumeration Reference