gate.alignment.AlignmentException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alignment Show documentation
Show all versions of alignment Show documentation
A selection of tools for processing parallel texts.
The newest version!
package gate.alignment;
import java.io.Serializable;
/**
* Exception that could occur while aligning annotations with one other
*
* @author niraj
*
*/
public class AlignmentException extends Exception implements Serializable {
private static final long serialVersionUID = 1147261517821203797L;
public AlignmentException(String message, Throwable t) {
super(message, t);
}
public AlignmentException(String message) {
super(message);
}
public AlignmentException() {
super();
}
public AlignmentException(Exception e) {
super(e);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy