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