de.unihd.dbs.uima.annotator.heideltime.HeidelTimeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of heideltime Show documentation
Show all versions of heideltime Show documentation
HeidelTime is a multilingual cross-domain temporal tagger that extracts temporal expressions from documents and normalizes them according to the TIMEX3 annotation standard.
/**
* 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