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

13 lines
224 B
Swift

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