return exception;
}
static ServiceException populate(ServiceException exception,
String serviceName, SocketTimeoutException cause) {
ServiceTimeoutException newException = new ServiceTimeoutException(
cause.getMessage(), cause);
newException.setServiceName(serviceName);
return newException;
}