mirror of
https://github.com/tsolomko/SWCompression.git
synced 2026-06-23 14:56:41 +00:00
19 lines
559 B
Swift
19 lines
559 B
Swift
// Copyright (c) 2026 Timofey Solomko
|
|
// Licensed under MIT License
|
|
//
|
|
// See LICENSE for license information
|
|
|
|
/**
|
|
Represents an error which happened during the creation of a new TAR container.
|
|
|
|
- Note: This error type is never used and will be removed in the next major update.
|
|
*/
|
|
public enum TarCreateError: Error {
|
|
/**
|
|
One of the `TarEntryInfo`'s string properties (such as `name`) cannot be encoded with UTF-8 encoding.
|
|
|
|
- Note: This error is never thrown and will be removed in the next major update.
|
|
*/
|
|
case utf8NonEncodable
|
|
}
|