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