mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-05 18:39:25 +00:00
8 lines
184 B
Dart
8 lines
184 B
Dart
class ZanoTransactionCreationException implements Exception {
|
|
ZanoTransactionCreationException(this.message);
|
|
|
|
final String message;
|
|
|
|
@override
|
|
String toString() => message;
|
|
}
|