try {
return getCommandResponseAsString(command);
} catch (IOException e) {
if (e instanceof ConnectException) {
// throw new SeleniumException(e.getMessage(),e);
throw new ConnectionIoException(e.getMessage(), e);
}
e.printStackTrace();
throw new UnsupportedOperationException("Catch body broken: IOException from " + command + " -> " + e, e);
}
}