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

tech.rsqn.cacheservice.exceptions.CacheConfigurationRuntimeException Maven / Gradle / Ivy

package tech.rsqn.cacheservice.exceptions;



public class CacheConfigurationRuntimeException extends RuntimeException {
    public CacheConfigurationRuntimeException() {
        super(); //To change body of overridden methods use File | Settings | File Templates.
    }

    public CacheConfigurationRuntimeException(String message) {
        super(message); //To change body of overridden methods use File | Settings | File Templates.
    }

    public CacheConfigurationRuntimeException(String message, Throwable cause) {
        super(message, cause); //To change body of overridden methods use File | Settings | File Templates.
    }

    public CacheConfigurationRuntimeException(Throwable cause) {
        super(cause); //To change body of overridden methods use File | Settings | File Templates.
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy