if (failedConnections.size() > 0) {
String message = "TCPClient: The following connections could not be established:\n";
for (String connection : failedConnections.first()) {
message = message + connection + ": " + failedConnections.getInSecond(connection) + "\n";
}
throw new NetworkException(message);
}
}
}