
org.codelibs.elasticsearch.minhash.MinHashException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elasticsearch-minhash Show documentation
Show all versions of elasticsearch-minhash Show documentation
This plugin provides b-bit minhash algorism.
package org.codelibs.elasticsearch.minhash;
public class MinHashException extends RuntimeException {
private static final long serialVersionUID = 1L;
public MinHashException(final String message) {
super(message);
}
public MinHashException(final String message, final Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy