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

8 lines
174 B
Dart
Raw Normal View History

2022-03-30 15:57:04 +00:00
class WalletOpeningException implements Exception {
2022-10-12 17:09:57 +00:00
WalletOpeningException({required this.message});
2022-03-30 15:57:04 +00:00
final String message;
@override
String toString() => message;
}