Files
SWCompression/Sources/TAR/TarCreateError.swift
T
2018-08-07 21:05:36 +03:00

15 lines
460 B
Swift

// Copyright (c) 2018 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
/**
Represents an error, which happened during creation of a new TAR container.
- Note: This error type is going to be merged with `TarError` 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.
case utf8NonEncodable
}