io.github.xanthic.cache.api.exception.NoDefaultCacheImplementationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cache-api Show documentation
Show all versions of cache-api Show documentation
Xanthic Cache API dependency
package io.github.xanthic.cache.api.exception;
/**
* Thrown when a cache is to be built with no provider specified and no default provider was found.
*/
public class NoDefaultCacheImplementationException extends RuntimeException {
public NoDefaultCacheImplementationException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy