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

de.sekmi.li2b2.hive.HiveException Maven / Gradle / Ivy

There is a newer version: 0.8
Show newest version
package de.sekmi.li2b2.hive;

/**
 * Exception caused by unexpected server (hive) behaviour.
 * 
 * @author R.W.Majeed
 *
 */
public class HiveException extends Exception{

	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;

	
	public HiveException(String message){
		super(message);
	}

	public HiveException(String message, Throwable cause){
		super(message, cause);
	}
	public HiveException(Throwable cause){
		super(cause);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy