add missing error messages (#1696)

This commit is contained in:
cyan 2024-09-23 18:18:21 +02:00 committed by GitHub
parent 17de9f16b8
commit bab45a9e36
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 39 additions and 0 deletions

View file

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