es.ucm.fdi.gaia.jcolibri.exception.UnImplementedException 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.
/**
* UnImplementedException.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;
/**
* Exception thrown when something is not implemented yet.
* @author Juan A. Recio-Garc�a
* @version 2.0
*/
public class UnImplementedException extends Exception {
private static final long serialVersionUID = 1L;
public UnImplementedException(String msg) {
super(msg);
}
public UnImplementedException(Exception ex) {
super(ex);
}
}