conversations-classic-ios/ConversationsClassic/AppData/Store/ClientStoreError.swift

13 lines
262 B
Swift
Raw Normal View History

2024-08-11 21:52:01 +00:00
enum ClientStoreError: Error {
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
}