
com.alicp.jetcache.CacheException Maven / Gradle / Ivy
The newest version!
/**
* Created on 13-09-09 18:58
*/
package com.alicp.jetcache;
/**
* @author huangli
*/
public class CacheException extends RuntimeException {
private static final long serialVersionUID = -9066209768410752667L;
public CacheException(String message) {
super(message);
}
public CacheException(String message, Throwable cause) {
super(message, cause);
}
public CacheException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy