gate.composite.CombiningMethodException 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.
package gate.composite;
import java.io.Serializable;
/**
* Exception that occurs while combining members of a compound document.
*
* @author niraj
*/
public class CombiningMethodException extends Exception implements Serializable {
private static final long serialVersionUID = 1147261517821203797L;
public CombiningMethodException(String message) {
super(message);
}
public CombiningMethodException() {
super();
}
public CombiningMethodException(Exception e) {
super(e);
}
}