cake_wallet/cw_monero/lib/exceptions/wallet_loading_exception.dart

8 lines
165 B
Dart
Raw Normal View History

2020-12-23 12:48:04 +00:00
class WalletLoadingException implements Exception {
WalletLoadingException({this.message});
final String message;
@override
String toString() => message;
}