cake_wallet/cw_monero/lib/exceptions/wallet_creation_exception.dart

5 lines
No EOL
122 B
Dart

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