org.protege.editor.owl.rdf.SparqlReasonerException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sparql-query-plugin Show documentation
Show all versions of sparql-query-plugin Show documentation
Plug-in for the Protege Desktop ontology editor that provides support for writing and executing SPARQL queries.
package org.protege.editor.owl.rdf;
public class SparqlReasonerException extends Exception {
private static final long serialVersionUID = -7533512483805738539L;
public SparqlReasonerException() {
}
public SparqlReasonerException(Throwable t) {
super(t);
}
public SparqlReasonerException(String message, Throwable t) {
super(message, t);
}
}