cake_wallet/cw_zano/lib/api/exceptions/create_wallet_exception.dart
2023-12-16 15:00:22 +00:00

7 lines
No EOL
202 B
Dart

class CreateWalletException implements Exception {
final String message;
CreateWalletException(this.message): super();
@override
String toString() => '${this.runtimeType}(message: $message)';
}