14 lines
169 B
Swift
14 lines
169 B
Swift
|
//
|
||
|
// AppError.swift
|
||
|
//
|
||
|
//
|
||
|
// Created by MainasuK on 2022-8-8.
|
||
|
//
|
||
|
|
||
|
import Foundation
|
||
|
|
||
|
public enum AppError: Error {
|
||
|
case badRequest
|
||
|
case badAuthentication
|
||
|
}
|