This repository has been archived on 2026-02-12. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
swift-duct-calc/Sources/DatabaseClient/Errors.swift

12 lines
195 B
Swift

import Foundation
public struct ValidationError: Error {
public let message: String
public init(_ message: String) {
self.message = message
}
}
public struct NotFoundError: Error {}