// // TestError.swift // AutoCatCore // // Created by Selim Mustafaev on 04.04.2022. // import Foundation enum TestError: LocalizedError { case testKindNotFound public var errorDescription: String? { switch self { case .testKindNotFound: return "Test kind not found" } } }