
it.unitn.disi.nlptools.NLPToolsException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of s-match Show documentation
Show all versions of s-match Show documentation
A version of S-Match semantic matching framework for Open Data
The newest version!
package it.unitn.disi.nlptools;
/**
* Main NLPTools exception.
*
* @author Aliaksandr Autayeu
*/
public class NLPToolsException extends Exception {
/**
* Constructor
* Creates a new Exception by using super(msg) method
*
* @param errorDescription the description of the error
*/
public NLPToolsException(String errorDescription) {
super(errorDescription);
}
/**
* Constructor
* Creates a new Exception by using super(msg, cause) method
*
* @param errorDescription the description of the error
* @param cause the cause
*/
public NLPToolsException(String errorDescription, Throwable cause) {
super(errorDescription, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy