cake_wallet/cw_monero/lib/exceptions/wallet_creation_exception.dart

5 lines
122 B
Dart
Raw Normal View History

2020-01-04 19:31:52 +00:00
class WalletCreationException implements Exception {
final String message;
WalletCreationException({this.message});
}