es.ucm.fdi.gaia.jcolibri.exception.InitializingException 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.
/**
* InitializingException.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 in the initialization of an object.
*
* @author Juan A. Recio-García
* @version 2.0
*/
public class InitializingException extends ExecutionException {
private static final long serialVersionUID = 1L;
/**
* Creates a new InitializingException
without detail
* message.
*/
public InitializingException() {}
/**
* Creates a new InitializingException
with the specified
* detail message.
*
* @param msg detail message.
*/
public InitializingException(String msg) {
super(msg);
}
/**
* Creates a new InitializingException
with the specified
* detail message.
*
* @param th cause of the exception.
*/
public InitializingException(Throwable th) {
super(th);
}
}