Files
SWCompression/Sources/Common/DataError.swift
T
2021-09-26 14:03:38 +03:00

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
}