edu.washington.cs.knowitall.nlp.NlpException 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 NlpException extends RuntimeException {
private static final long serialVersionUID = 1L;
public NlpException(Exception cause) {
super(cause);
}
public NlpException(String message, Exception cause) {
super(message, cause);
}
public NlpException(String message) {
super(message);
}
}