it.unibz.inf.ontop.rdf4j.predefined.InvalidBindingSetException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ontop-rdf4j Show documentation
Show all versions of ontop-rdf4j Show documentation
This is the rdf4j API implementation based on Ontop
The newest version!
package it.unibz.inf.ontop.rdf4j.predefined;
public class InvalidBindingSetException extends Exception {
public InvalidBindingSetException(String message) {
super(message);
}
public InvalidBindingSetException(Exception e) {
super(e);
}
public InvalidBindingSetException(String message, Exception e) {
super(message, e);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy