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

8 lines
No EOL
174 B
Dart

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