cake_wallet/cw_monero/lib/api/exceptions/setup_wallet_exception.dart
2024-09-23 19:18:21 +03:00

8 lines
No EOL
172 B
Dart

class SetupWalletException implements Exception {
SetupWalletException({required this.message});
final String message;
@override
String toString() => message;
}