log.debug(String.format("Fetching getting started guide for '%s'", path));
return org.getAsciidocGuide(path);
} catch (RestClientException ex) {
String msg = String.format("No getting started guide found for '%s'", path);
log.warn(msg, ex);
throw new ResourceNotFoundException(msg, ex);
}
}