Delete AppError.swift

This commit is contained in:
Jungpyo Hong 2021-05-05 12:21:05 -05:00 committed by GitHub
parent f9f3219f46
commit 8e09d60d9e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,37 +0,0 @@
//
// AppError.swift
// OperationQueueDemo
//
// Created by JungpyoHong on 5/4/21.
//
import Foundation
enum AppError: Error {
case badUrl
case badResponse
case serverError
case noData
case parseError
case badRequest
case genericError(String)
var errorMessage: String {
switch self {
case .badUrl:
return ""
case .badResponse:
return ""
case .serverError:
return ""
case .noData:
return ""
case .badRequest:
return ""
case .parseError:
return ""
case .genericError(let message):
return message
}
}
}