📄 cacheexception.java
字号:
/*
* Created on 2006-2-25
* Last modified on 2006-2-25
* Powered by YeQiangWei.com
*/
package com.yeqiangwei.club.cache;
public class CacheException extends Exception {
private static final long serialVersionUID = 1L;
public CacheException(String s) {
super(s);
}
public CacheException(String s, Exception e) {
super(s, e);
}
public CacheException(Exception e) {
super(e);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -