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

com.as.text_understanding.common.TextUnderstandingException Maven / Gradle / Ivy

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