![JAR search and dependency download from the Maven repository](/logo.png)
com.as.text_understanding.common.TextUnderstandingException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of text-understanding Show documentation
Show all versions of text-understanding Show documentation
Analyzing natural-language text, in particular predicate-argument structure.
The newest version!
package com.as.text_understanding.common;
/**
* Base exception for exceptions thrown by methods in this project.
*
*
* Date: Feb 24, 2016
* @author Asher Stern
*
*/
@SuppressWarnings("serial")
public class TextUnderstandingException extends RuntimeException
{
public TextUnderstandingException()
{
}
public TextUnderstandingException(String message)
{
super(message);
}
public TextUnderstandingException(Throwable cause)
{
super(cause);
}
public TextUnderstandingException(String message, Throwable cause)
{
super(message, cause);
}
public TextUnderstandingException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace)
{
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy