We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c259fdf + fc20ba7 commit cb40e67Copy full SHA for cb40e67
1 file changed
core/model/src/main/java/org/eclipse/rdf4j/model/impl/ValidatingValueFactory.java
@@ -69,7 +69,7 @@ public ValidatingValueFactory(ValueFactory delegate) {
69
public IRI createIRI(String iri) {
70
try {
71
if (!new ParsedIRI(iri).isAbsolute()) {
72
- throw new IllegalArgumentException("IRI must be absolute");
+ throw new IllegalArgumentException("IRI must be absolute: " + iri);
73
}
74
return delegate.createIRI(iri);
75
} catch (URISyntaxException e) {
0 commit comments