21 lines
336 B
Swift
21 lines
336 B
Swift
//
|
|
// 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"
|
|
}
|
|
}
|
|
}
|