mirror of https://github.com/oxen-io/session-ios
clean errors
parent
8d05a9dce3
commit
d31036f60c
@ -0,0 +1,41 @@
|
||||
// Copyright © 2024 Rangeproof Pty Ltd. All rights reserved.
|
||||
//
|
||||
// stringlint:disable
|
||||
|
||||
import Foundation
|
||||
import GRDB
|
||||
import SessionUtilitiesKit
|
||||
|
||||
internal enum StartupError: Error, CustomStringConvertible {
|
||||
case databaseError(Error)
|
||||
case failedToRestore
|
||||
case startupTimeout
|
||||
|
||||
public var description: String {
|
||||
switch self {
|
||||
case .databaseError(StorageError.startupFailed), .databaseError(DatabaseError.SQLITE_LOCKED):
|
||||
return "Database startup failed"
|
||||
case .databaseError(StorageError.migrationNoLongerSupported): return "Unsupported version"
|
||||
case .failedToRestore: return "Failed to restore"
|
||||
case .databaseError: return "Database error"
|
||||
case .startupTimeout: return "Startup timeout"
|
||||
}
|
||||
}
|
||||
|
||||
var message: String {
|
||||
switch self {
|
||||
case .databaseError(StorageError.startupFailed), .databaseError(DatabaseError.SQLITE_LOCKED), .failedToRestore, .databaseError:
|
||||
return "databaseErrorGeneric".localized()
|
||||
|
||||
case .databaseError(StorageError.migrationNoLongerSupported):
|
||||
return "databaseErrorUpdate"
|
||||
.put(key: "app_name", value: Constants.app_name)
|
||||
.localized()
|
||||
|
||||
case .startupTimeout:
|
||||
return "databaseErrorTimeout"
|
||||
.put(key: "app_name", value: Constants.app_name)
|
||||
.localized()
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue