mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 09:57:46 +00:00
8 lines
No EOL
165 B
Dart
8 lines
No EOL
165 B
Dart
class WalletLoadingException implements Exception {
|
|
WalletLoadingException({this.message});
|
|
|
|
final String message;
|
|
|
|
@override
|
|
String toString() => message;
|
|
} |