📄 componentexception.java
字号:
package com.wiley.compBooks.roman.session.fazuul;
/**
* Exceptions thrown by Components
*/
public class ComponentException extends Exception {
public ComponentException() {
super();
}
public ComponentException(Exception e) {
super(e.toString());
}
public ComponentException(String s) {
super(s);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -