📄 wizardstepexception.java
字号:
package net.sf.fmj.ui.wizards;/** * Exception with an (ideally) human-readable message, as a result of processing a wizard step. * @author Ken Larson * */public class WizardStepException extends Exception{ public WizardStepException() { super(); } public WizardStepException(String arg0, Throwable arg1) { super(arg0, arg1); } public WizardStepException(String arg0) { super(arg0); } public WizardStepException(Throwable arg0) { super(arg0); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -