Fix error message (change erroneous UPDATE to SELECT)

This commit is contained in:
Graham Triggs 2016-05-31 23:30:45 +01:00
parent 607ce353ce
commit e7336ab019

View file

@ -304,7 +304,7 @@ public class RDFServiceSparql extends RDFServiceImpl implements RDFService {
if (statusCode > 399) {
log.error("response " + statusCode + " to query. \n");
log.debug("update string: \n" + queryStr);
throw new RDFServiceException("Unable to perform SPARQL UPDATE");
throw new RDFServiceException("Unable to perform SPARQL SELECT");
}
try (InputStream in = response.getEntity().getContent()) {