}
public NexusClientNotFoundException convertIf404(final UniformInterfaceException e) {
final ClientResponse response = e.getResponse();
if (ClientResponse.Status.NOT_FOUND.equals(response.getClientResponseStatus())) {
return new NexusClientNotFoundException(
getMessageIfPresent(ClientResponse.Status.NOT_FOUND.getStatusCode(), e),
response.getClientResponseStatus().getReasonPhrase(),
getResponseBody(response)
);
}