Github user afs commented on a diff in the pull request: https://github.com/apache/jena/pull/114#discussion_r175913506 --- Diff: jena-arq/src/main/java/org/apache/jena/sparql/engine/http/QueryEngineHTTP.java --- @@ -532,6 +535,18 @@ else if ( actualContentType.equals(WebContent.contentTypeJSON)) } } + @Override + public JsonArray execJson() + { + throw new NotImplementedException("JSON queries not implemented for remote calls") ; --- End diff -- Minor: for better or worse, we have `org.apache.jena.atlas.lib.NotImplemented`.
---