mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-28 22:49:49 +00:00
7 lines
No EOL
202 B
Dart
7 lines
No EOL
202 B
Dart
class CreateWalletException implements Exception {
|
|
final String message;
|
|
|
|
CreateWalletException(this.message): super();
|
|
@override
|
|
String toString() => '${this.runtimeType}(message: $message)';
|
|
} |