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 {
WalletCreationException({this.message});
2020-01-08 14:26:34 +02:00
final String message;
2020-01-04 21:31:52 +02:00
}