libmobilecoin-ios-artifacts/Sources/TestVector/Util/TestVectorError.swift
2021-06-23 16:55:52 -10:00

20 lines
340 B
Swift

//
// Copyright (c) 2020-2021 MobileCoin. All rights reserved.
//
import Foundation
struct TestVectorError: Error {
let reason: String
init(_ reason: String) {
self.reason = reason
}
}
extension TestVectorError: CustomStringConvertible {
var description: String {
"Test vector error: \(reason)"
}
}