yweatherparserexception.java
来自「yahoo 所使用的 天气预报的解析代码」· Java 代码 · 共 26 行
JAVA
26 行
/*
* YWeatherParserException.java
*
* Created on May 25, 2007, 4:03 PM
*
*/
package yweatherbeta;
/**
*
* @author BEN
*/
public class YWeatherParserException extends Exception{
/** Creates a new instance of YWeatherParserException */
public YWeatherParserException() {
super();
}
public YWeatherParserException(String msg) {
super(msg);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?