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

es.ucm.fdi.gaia.jcolibri.exception.UnImplementedException Maven / Gradle / Ivy

Go to download

jCOLIBRI is a java framework for the development of Case-Based Reasoning systems.

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy