edu.washington.cs.knowitall.nlp.ChunkerException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of reverb-core Show documentation
Show all versions of reverb-core Show documentation
A regular-expression based Open IE relation extractor.
package edu.washington.cs.knowitall.nlp;
/**
* An exception class used for handling errors related to layered sequences.
*
* @author afader
*
*/
public class ChunkerException extends NlpException {
private static final long serialVersionUID = 1L;
public ChunkerException(Exception cause) {
super(cause);
}
public ChunkerException(String message, Exception cause) {
super(message, cause);
}
public ChunkerException(String message) {
super(message);
}
}