wizardstepexception.java
来自「FMJ(freedom media for java)是java视频开发的新选择」· Java 代码 · 共 32 行
JAVA
32 行
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 + =
减小字号Ctrl + -
显示快捷键?