📄 configexception.java
字号:
package xyz.frame.config;import xyz.frame.XyzException;/** * Something bad happenned during configuration * * @author Guilherme Silveira */public class ConfigException extends XyzException { /** * */ private static final long serialVersionUID = -5267635588148377816L; /** * */ public ConfigException() { super(); } /** * @param message * @param cause */ public ConfigException(String message, Throwable cause) { super(message, cause); } /** * @param message */ public ConfigException(String message) { super(message); } /** * @param cause */ public ConfigException(Throwable cause) { super(cause); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -