Sep30Not Found Exception
Exception thrown when the recovery server returns HTTP 404 Not Found.
Indicates that the requested account or resource does not exist on the recovery server. This typically occurs when:
The account has not been registered with the recovery server
The account was previously deleted
The signing address used in a recovery request is not recognized
Recovery actions:
Verify the Stellar account address is correct
Register the account with the recovery server before attempting recovery
Check if the account was registered with a different recovery server
Example - Handle not found:
try {
val details = sep30Service.getAccountDetails(address)
} catch (e: Sep30NotFoundException) {
println("Account not registered: ${e.message}")
// Register the account first
}Content copied to clipboard
See also:
Sep30Exception base class
Parameters
message
Detailed error message from the recovery server