
com.intuit.fuzzymatcher.exception.MatchException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fuzzy-matcher Show documentation
Show all versions of fuzzy-matcher Show documentation
A java library to determine probability of objects being similar
package com.intuit.fuzzymatcher.exception;
public class MatchException extends RuntimeException {
public MatchException() {
super();
}
public MatchException(String message) {
super(message);
}
public MatchException(Throwable t) {
super(t);
}
public MatchException(String message, Throwable t) {
super(message, t);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy