📄 cachenotdefineexception.java
字号:
/*
* Created on 2006-8-26 13:28:39
*
* By SinoBest
* Copyright hnisi.com.cn, 2005-2006, All rights reserved.
*/
package cn.com.juneng.system.common.cache;
import cn.com.juneng.system.common.exception.SystemBaseException;
/**
* @author yehailong
*
*/
public class CacheNotDefineException extends SystemBaseException {
public CacheNotDefineException() {
super();
// TODO Auto-generated constructor stub
}
public CacheNotDefineException(String message) {
super(message);
// TODO Auto-generated constructor stub
}
public CacheNotDefineException(Throwable cause) {
super(cause);
// TODO Auto-generated constructor stub
}
public CacheNotDefineException(String message, Throwable cause) {
super(message, cause);
// TODO Auto-generated constructor stub
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -