⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 unloadpropertiesexception.java

📁 计算机技术的快速发展
💻 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 + -