cake_wallet/cw_wownero/lib/api/exceptions/setup_wallet_exception.dart
2024-06-06 23:36:54 +02:00

5 lines
No EOL
127 B
Dart

class SetupWalletException implements Exception {
SetupWalletException({required this.message});
final String message;
}