mirror of
https://github.com/tsolomko/SWCompression.git
synced 2026-06-23 14:56:41 +00:00
14 lines
274 B
Swift
14 lines
274 B
Swift
// Copyright (c) 2021 Timofey Solomko
|
|
// Licensed under MIT License
|
|
//
|
|
// See LICENSE for license information
|
|
|
|
import Foundation
|
|
|
|
public enum DataError: Error, Equatable {
|
|
case truncated
|
|
case corrupted
|
|
case checksumMismatch([Data])
|
|
case unsupportedFeature
|
|
}
|