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

10 lines
186 B
Dart
Raw Normal View History

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