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