cake_wallet/cw_zano/lib/api/exceptions/create_wallet_exception.dart

7 lines
202 B
Dart
Raw Normal View History

2023-12-16 15:00:22 +00:00
class CreateWalletException implements Exception {
final String message;
CreateWalletException(this.message): super();
@override
String toString() => '${this.runtimeType}(message: $message)';
}