- Fix error popup showing multiple times (#1987)

- Improve/generalize error handling
This commit is contained in:
Omar Hatem 2025-01-30 04:29:55 +02:00 committed by GitHub
parent f90b171d9b
commit 1c07048808
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 79 additions and 30 deletions

View file

@ -56,3 +56,13 @@ class CreateAssociatedTokenAccountException implements Exception {
class SignSPLTokenTransactionRentException implements Exception {}
class NoAssociatedTokenAccountException implements Exception {}
/// ==============================================================================
/// ==============================================================================
class RestoreFromSeedException implements Exception {
final String message;
RestoreFromSeedException(this.message);
}