
it.unitn.disi.common.DISIException 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.common;
/**
* Exception for common components.
*
* @author Aliaksandr Autayeu
*/
public class DISIException extends Exception {
/**
* Constructor.
* Creates a new Exception by using super(msg) method.
*
* @param errorDescription the description of the error
*/
public DISIException(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 DISIException(String errorDescription, Throwable cause) {
super(errorDescription, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy