com.fnklabs.draenei.orm.exception.CanNotBuildEntryCacheKey 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.orm.exception;
public class CanNotBuildEntryCacheKey extends RuntimeException {
public CanNotBuildEntryCacheKey(Class clazz, Throwable throwable) {
super(String.format("Can't build cache key for entry \"%s\"", clazz.getName()), throwable);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy