mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 12:29:51 +00:00
add missing error messages (#1696)
This commit is contained in:
parent
17de9f16b8
commit
bab45a9e36
8 changed files with 39 additions and 0 deletions
|
@ -2,4 +2,7 @@ class SetupWalletException implements Exception {
|
|||
SetupWalletException({required this.message});
|
||||
|
||||
final String message;
|
||||
|
||||
@override
|
||||
String toString() => message;
|
||||
}
|
|
@ -2,4 +2,6 @@ class WalletRestoreFromKeysException implements Exception {
|
|||
WalletRestoreFromKeysException({required this.message});
|
||||
|
||||
final String message;
|
||||
|
||||
String toString() => message;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue