📄 unloadpropertiesexception.java
字号:
/*
* 创建日期 2005-5-5
*/
package com.suninformation.tools;
/**
* @author 刘镇
* 无法读取系统属性文件
*/
public class UnloadPropertiesException extends Exception {
public UnloadPropertiesException() {
}
public UnloadPropertiesException(String msg) {
super(msg);
}
public UnloadPropertiesException(Throwable msg) {
super(msg);
}
public UnloadPropertiesException(String msg, Throwable p1) {
super(msg, p1);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -