mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 12:09:43 +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;
|
|
}
|
|
} |