![JAR search and dependency download from the Maven repository](/logo.png)
es.ucm.fdi.gaia.jcolibri.exception.OntologyAccessException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jCOLIBRI Show documentation
Show all versions of jCOLIBRI Show documentation
jCOLIBRI is a java framework for the development of Case-Based Reasoning systems.
The newest version!
/**
* OntologyAccessException.java
* jCOLIBRI2 framework.
* @author Juan A. Recio-Garc�a.
* GAIA - Group for Artificial Intelligence Applications
* http://gaia.fdi.ucm.es
* 11/01/2007
*/
package es.ucm.fdi.gaia.jcolibri.exception;
/**
* Error accessing an ontology (using OntoBridge).
* @author Juan A. Recio-Garc�a
* @version 2.0
*/
public class OntologyAccessException extends Exception {
private static final long serialVersionUID = 1L;
public OntologyAccessException(String msg) {
super(msg);
}
public OntologyAccessException(Exception ex) {
super(ex);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy