cake_wallet/cw_wownero/lib/api/exceptions/wallet_opening_exception.dart

8 lines
174 B
Dart
Raw Normal View History

2024-06-06 21:36:54 +00:00
class WalletOpeningException implements Exception {
WalletOpeningException({required this.message});
final String message;
@override
String toString() => message;
}