cake_wallet/cw_monero/lib/exceptions/creation_transaction_exception.dart

8 lines
No EOL
179 B
Dart

class CreationTransactionException implements Exception {
CreationTransactionException({this.message});
final String message;
@override
String toString() => message;
}