Skip to content

Commit

Permalink
GH-2710 moving of exception classes made more prominent in release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
abrokenjester committed Jul 25, 2021
1 parent 7deb0a7 commit bfa1829
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion site/content/release-notes/4.0.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ The parser for the SeRQL query language, as well as all related code and tool op
The `rdf4j-util` module has been split up into 8 separate modules, to allow for greater flexibility in our dependency tree and potential smaller footprints. The 8 new modules are as follows:

- `rdf4j-common-annotation` contains internal Java annotation classes (for marking parts of the code experimental or for internal use only);
- `rdf4j-common-exception` contains top level interfaces and classes for exceptions thrown by RDF4J. Note: `org.eclipse.rdf4j.RDF4JException`, the top-level exception class of RDF4J, has been moved to `org.eclipse.rdf4j.common.exception.RDF4JException`.
- `rdf4j-common-exception` contains top level interfaces and classes for exceptions thrown by RDF4J.
- `rdf4j-common-io` contains common file IO utilities and IRI parsing utilities.
- `rdf4j-common-iterator` contains top level interfaces and classes and some common utilities for working with iterators and iterations.
- `rdf4j-common-text` contains utility classes for text/string based operations.
Expand All @@ -41,6 +41,14 @@ The `rdf4j-util` module has been split up into 8 separate modules, to allow for

Projects that _directly_ depended on the `rdf4j-util` module will need to change their dependencies to more precisely figure out which of these new 'common' modules to use.

### `org.eclipse.rdf4j.RDF4JException` moved to `org.eclipse.rdf4j.common.exception.RDF4JException`

Projects that directly reference the `RDF4JException` class will need to update their imports.

### `org.eclipse.rdf4j.RDF4JConfigException` moved to `org.eclipse.rdf4j.common.exception.RDF4JConfigException`

Projects that directly reference the `RDF4JConfigException` class will need to update their imports.

## Acknowledgements

This release was made possible by contributions from

0 comments on commit bfa1829

Please sign in to comment.