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

org.codelibs.elasticsearch.minhash.MinHashException Maven / Gradle / Ivy

There is a newer version: 8.14.1.0
Show newest version
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