mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-26 21:50:27 +00:00
8 lines
No EOL
183 B
Dart
8 lines
No EOL
183 B
Dart
class ZanoTransactionCreationException implements Exception {
|
|
ZanoTransactionCreationException(this.message);
|
|
|
|
final String message;
|
|
|
|
@override
|
|
String toString() => message;
|
|
} |