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

io.github.xanthic.cache.api.exception.NoDefaultCacheImplementationException Maven / Gradle / Ivy

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 - 2024 Weber Informatics LLC | Privacy Policy