mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-05 10:29:23 +00:00
10 lines
No EOL
186 B
Dart
10 lines
No EOL
186 B
Dart
class SetupWalletException implements Exception {
|
|
SetupWalletException({required this.message});
|
|
|
|
final String message;
|
|
|
|
@override
|
|
String toString() {
|
|
return message;
|
|
}
|
|
} |