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

8 lines
165 B
Dart
Raw Normal View History

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