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

it.unibz.inf.ontop.rdf4j.predefined.parsing.PredefinedQueryConfigException Maven / Gradle / Ivy

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