cake_wallet/cw_monero/lib/exceptions/wallet_creation_exception.dart
2020-10-09 21:34:21 +03:00

8 lines
No EOL
167 B
Dart

class WalletCreationException implements Exception {
WalletCreationException({this.message});
final String message;
@override
String toString() => message;
}