in artifactregistry-maven-wagon/src/main/java/com/google/cloud/artifactregistry/wagon/ArtifactRegistryWagon.java [220:225]
private void rethrowNotFoundException(HttpResponseException e)
throws ResourceDoesNotExistException {
if (e.getStatusCode() == HttpStatusCodes.STATUS_CODE_NOT_FOUND) {
throw new ResourceDoesNotExistException("The remote resource does not exist.", e);
}
}