mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-04 18:09:39 +00:00
7 lines
202 B
Dart
7 lines
202 B
Dart
|
class CreateWalletException implements Exception {
|
||
|
final String message;
|
||
|
|
||
|
CreateWalletException(this.message): super();
|
||
|
@override
|
||
|
String toString() => '${this.runtimeType}(message: $message)';
|
||
|
}
|