cake_wallet/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 17:09:57 +00:00
SetupWalletException({required this.message});
final String message;
2024-09-23 16:18:21 +00:00
@override
String toString() => message;
}