cake_wallet/cw_monero/lib/exceptions/wallet_creation_exception.dart
2020-01-04 21:31:52 +02:00

5 lines
No EOL
122 B
Dart

class WalletCreationException implements Exception {
final String message;
WalletCreationException({this.message});
}