de.sekmi.li2b2.hive.HiveException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of li2b2-xml Show documentation
Show all versions of li2b2-xml Show documentation
Message structures and code for parsing.
Used by client and server.
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);
}
}