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

de.unihd.dbs.uima.annotator.heideltime.HeidelTimeException Maven / Gradle / Ivy

Go to download

HeidelTime is a multilingual cross-domain temporal tagger that extracts temporal expressions from documents and normalizes them according to the TIMEX3 annotation standard.

There is a newer version: 2.2.1
Show newest version
/**
 * A dedicated Exception type for HeidelTime-based Exceptions.
 */
package de.unihd.dbs.uima.annotator.heideltime;

/**
 * @author Julian Zell
 *
 */
public class HeidelTimeException extends Exception {
	/**
	 * automatically generated uid
	 */
	private static final long serialVersionUID = 5934916764509083459L;
	private String message;
	
	public HeidelTimeException() {};
	
	public HeidelTimeException(String message) {
		this.message = message;
	}
	
	public String getMessage() {
		return this.message;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy