cake_wallet/cw_monero/lib/exceptions/setup_wallet_exception.dart

5 lines
118 B
Dart
Raw Normal View History

2020-01-04 19:31:52 +00:00
class SetupWalletException implements Exception {
SetupWalletException({this.message});
2020-01-08 12:26:34 +00:00
final String message;
2020-01-04 19:31:52 +00:00
}