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