All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.protege.editor.owl.rdf.SparqlReasonerException Maven / Gradle / Ivy

Go to download

Plug-in for the Protege Desktop ontology editor that provides support for writing and executing SPARQL queries.

There is a newer version: 3.0.0
Show newest version
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);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy