CakeWallet/cw_haven/lib/api/exceptions/setup_wallet_exception.dart

10 lines
186 B
Dart
Raw Normal View History

2022-03-30 17:57:04 +02:00
class SetupWalletException implements Exception {
2022-10-12 13:09:57 -04:00
SetupWalletException({required this.message});
2022-03-30 17:57:04 +02:00
final String message;
2024-09-23 18:18:21 +02:00
@override
String toString() {
return message;
}
2022-03-30 17:57:04 +02:00
}