10 lines
187 B
Swift
10 lines
187 B
Swift
enum ClientStoreError: Error {
|
|
case clientNotFound
|
|
case rosterNotFound
|
|
case imageNotFound
|
|
case videoNotFound
|
|
case fileStoreError
|
|
case noData
|
|
case fileTooBig
|
|
}
|