es.ucm.fdi.gaia.jcolibri.exception.AttributeAccessException 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.
/**
* AttributeAccessException.java
* jCOLIBRI2 framework.
* @author Juan A. Recio-Garc�a.
* GAIA - Group for Artificial Intelligence Applications
* http://gaia.fdi.ucm.es
* 03/01/2007
*/
package es.ucm.fdi.gaia.jcolibri.exception;
/**
* Exception for attribute access errors.
* @author Juan A. Recio-García
* @version 2.0
*/
public class AttributeAccessException extends Exception {
private static final long serialVersionUID = 1L;
public AttributeAccessException(String msg)
{
super(msg);
}
public AttributeAccessException(Exception ex) {
super(ex);
}
}