CakeWallet/cw_monero/lib/exceptions/wallet_creation_exception.dart

5 lines
122 B
Dart
Raw Normal View History

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