make restore from keys throw error with description

This commit is contained in:
Czarek Nakamoto 2024-09-05 09:15:50 +02:00
parent ac39274827
commit 752fbc061e
3 changed files with 15 additions and 0 deletions

View file

@ -2,4 +2,9 @@ class WalletRestoreFromSeedException implements Exception {
WalletRestoreFromSeedException({required this.message});
final String message;
@override
String toString() {
return message;
}
}

View file

@ -2,4 +2,9 @@ class WalletRestoreFromSeedException implements Exception {
WalletRestoreFromSeedException({required this.message});
final String message;
@override
String toString() {
return message;
}
}

View file

@ -2,4 +2,9 @@ class WalletRestoreFromKeysException implements Exception {
WalletRestoreFromKeysException({required this.message});
final String message;
@override
String toString() {
return message;
}
}