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

8 lines
176 B
Dart
Raw Normal View History

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