conversations-classic-ios/ConversationsClassic/AppData/AppError.swift

13 lines
254 B
Swift
Raw Normal View History

2024-08-18 15:56:47 +00:00
enum AppError: Error {
2024-08-11 21:52:01 +00:00
case clientNotFound
2024-08-14 09:29:51 +00:00
case rosterNotFound
2024-08-17 13:54:54 +00:00
case imageNotFound
case videoNotFound
2024-08-17 21:12:39 +00:00
case fileStoreError
case noData
case fileTooBig
2024-08-17 21:33:14 +00:00
case invalidContentType
case invalidPath
case invalidLocalName
2024-08-11 21:52:01 +00:00
}