📄 readtemplateexception.java
字号:
/*
* 创建日期 2007-3-13
*/
package ch06.html.utils;
import java.io.IOException;
/**
* @author <a href="chengweits@hotmail.com">ChengWei </a>
* 读取摸版的封装模块
*
*/
public class ReadTemplateException extends IOException{
/**
* 有参数构造函数
* @param str 信息显示
*/
public ReadTemplateException(String str){
super(str);
}
/**
* 无参数构造函数
*
*/
public ReadTemplateException(){
super();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -