cake_wallet/cw_monero/lib/api/exceptions/wallet_creation_exception.dart

8 lines
167 B
Dart
Raw Normal View History

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