All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.washington.cs.knowitall.nlp.NlpException Maven / Gradle / Ivy

There is a newer version: 1.4.3
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy