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

com.fnklabs.draenei.analytics.UnknownAlgorithm Maven / Gradle / Ivy

There is a newer version: 0.8.3
Show newest version
package com.fnklabs.draenei.analytics;

/**
 * Unknown algorithm exception. Used by {@link ClusteringAlgorithmFactory} and {@link SimilarityAlgorithmFactory}
 */
class UnknownAlgorithm extends RuntimeException {

    /**
     * @param algorithm Algorithm name
     */
    public UnknownAlgorithm(String algorithm) {
        super(String.format("Unknown algorithm: [%s]", algorithm));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy