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

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

package io.github.xanthic.cache.api.exception;

import io.github.xanthic.cache.api.domain.MisconfigurationPolicy;

/**
 * Thrown when a cache specification issue arises
 * under {@link MisconfigurationPolicy#REJECT}
 */
public class MisconfiguredCacheException extends RuntimeException {

	public MisconfiguredCacheException(String message) {
		super(message);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy