fr.univnantes.termsuite.api.TermSuiteException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of termsuite-core Show documentation
Show all versions of termsuite-core Show documentation
A Java UIMA-based toolbox for multilingual and efficient terminology extraction an multilingual term alignment
The newest version!
package fr.univnantes.termsuite.api;
public class TermSuiteException extends RuntimeException {
/**
*
*/
private static final long serialVersionUID = 1L;
public TermSuiteException() {
super();
}
public TermSuiteException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
public TermSuiteException(String message, Throwable cause) {
super(message, cause);
}
public TermSuiteException(String message) {
super(message);
}
public TermSuiteException(Throwable cause) {
super(cause);
}
}