Skip to content

Commit

Permalink
Bump org.apache.jena:apache-jena-libs from 4.3.1 to 4.10.0 (#467)
Browse files Browse the repository at this point in the history
* Bump org.apache.jena:apache-jena-libs from 4.3.1 to 4.10.0

Bumps org.apache.jena:apache-jena-libs from 4.3.1 to 4.10.0.

---
updated-dependencies:
- dependency-name: org.apache.jena:apache-jena-libs
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Rename SSEParseException to SSE_ParseException

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: lathouwerssam <[email protected]>
  • Loading branch information
dependabot[bot] and Sophietje authored Mar 1, 2024
1 parent ab37adb commit d6e8ac7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
<dependency>
<groupId>org.apache.jena</groupId>
<artifactId>apache-jena-libs</artifactId>
<version>4.3.1</version>
<version>4.10.0</version>
<type>pom</type>
</dependency>
</dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

import org.apache.jena.sparql.graph.PrefixMappingMem;
import org.apache.jena.sparql.sse.SSE;
import org.apache.jena.sparql.sse.SSEParseException;
import org.apache.jena.sparql.sse.SSE_ParseException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

Expand Down Expand Up @@ -90,7 +90,7 @@ public void validateValidBindingValue(String value) {
throw new IllegalArgumentException(String.format("'%s' is not a valid unprefixed URI.", value));
}
}
} catch (SSEParseException spe) {
} catch (SSE_ParseException spe) {
LOG.debug("{} is not valid because Jena could not parse it", value);
throw new IllegalArgumentException(String.format("'%s' is not an unprefixed URI or literal.", value));
}
Expand Down

0 comments on commit d6e8ac7

Please sign in to comment.