unitexception.java
来自「Ftp服务1.0」· Java 代码 · 共 24 行
JAVA
24 行
package ranab.unit;
import ranab.*;
/**
* This exception might be thrown by the unit conversion methods.
*
* @author <a href="mailto:rana_b@yahoo.com">Rana Bhattacharyya</a>
*/
public
class UnitException extends BaseException {
public UnitException() {
super();
}
public UnitException(String msg) {
super(msg);
}
public UnitException(Exception ex) {
super(ex.getMessage());
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?