it.unibz.inf.ontop.rdf4j.predefined.parsing.PredefinedQueryConfigException 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.parsing;
import org.eclipse.rdf4j.common.exception.RDF4JException;
/**
* TODO: better think about it
*/
public class PredefinedQueryConfigException extends RDF4JException {
public PredefinedQueryConfigException(String msg) {
super(msg);
}
public PredefinedQueryConfigException(Throwable t) {
super(t);
}
public PredefinedQueryConfigException(String msg, Throwable t) {
super(msg, t);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy