Update SDK

This commit is contained in:
Benoit Marty 2025-10-02 14:40:47 +02:00 committed by Benoit Marty
parent 73627d9319
commit b2306258b4
3 changed files with 5 additions and 1 deletions

View file

@ -11,6 +11,7 @@ import io.element.android.libraries.matrix.api.exception.ClientException
sealed class RecoveryException(message: String) : Exception(message) {
class SecretStorage(message: String) : RecoveryException(message)
class Import(message: String) : RecoveryException(message)
data object BackupExistsOnServer : RecoveryException("BackupExistsOnServer")
data class Client(val exception: ClientException) : RecoveryException(exception.message ?: "Unknown error")
}