cake_wallet/cw_haven/lib/api/exceptions/setup_wallet_exception.dart
2024-09-23 19:18:21 +03:00

10 lines
No EOL
186 B
Dart

class SetupWalletException implements Exception {
SetupWalletException({required this.message});
final String message;
@override
String toString() {
return message;
}
}