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

org.smart4j.plugin.cache.CacheException Maven / Gradle / Ivy

The newest version!
package org.smart4j.plugin.cache;

public class CacheException extends RuntimeException {

    public CacheException() {
        super();
    }

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

    public CacheException(String message, Throwable cause) {
        super(message, cause);
    }

    public CacheException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy