com.fnklabs.draenei.analytics.UnknownAlgorithm Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fnklabs-draenei Show documentation
Show all versions of fnklabs-draenei Show documentation
ORM for Cassandra but with distributed cache and analytics utils from package
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