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

8 lines
176 B
Dart
Raw Normal View History

2023-07-24 20:23:09 +00:00
class WalletCreationException implements Exception {
WalletCreationException({required this.message});
final String message;
@override
String toString() => message;
}