org.stellar.walletsdk.exception.RecoveryExceptions.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wallet-sdk Show documentation
Show all versions of wallet-sdk Show documentation
Kotlin Stellar Wallet SDK
The newest version!
package org.stellar.walletsdk.exception
sealed class RecoveryException(message: String) : WalletException(message)
object NoAccountSignersException :
RecoveryException("There are no signers on this recovery server")
object NotAllSignaturesFetchedException :
RecoveryException("Didn't get all recovery server signatures")
object NotRegisteredWithAllException :
RecoveryException("Could not register with all recovery servers")