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.
/**
* 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);
}
}