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

8 lines
174 B
Dart
Raw Normal View History

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