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

com.base4j.cache.CacheException Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version
package com.base4j.cache;

/**
 * 缓存相关异常容器
 */
@SuppressWarnings("serial")
public class CacheException extends RuntimeException {
	
	public CacheException(String s) {
		super(s);
	}

	public CacheException(String s, Throwable e) {
		super(s, e);
	}

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy