cake_wallet/cw_monero/lib/exceptions/connection_to_node_exception.dart

5 lines
No EOL
126 B
Dart

class ConnectionToNodeException implements Exception {
ConnectionToNodeException({this.message});
final String message;
}