📄 unitexception.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -