CakeWallet/cw_monero/lib/api/exceptions/setup_wallet_exception.dart

8 lines
172 B
Dart
Raw Normal View History

class SetupWalletException implements Exception {
2022-10-12 13:09:57 -04:00
SetupWalletException({required this.message});
final String message;
2024-09-23 18:18:21 +02:00
@override
String toString() => message;
}