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

es.ucm.fdi.gaia.jcolibri.exception.ExecutionException 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
/**
 * 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);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy