📄 tinyvmexception.java
字号:
package js.tinyvm;import js.common.ToolException;/** * Generic tiny vm exception. */public class TinyVMException extends ToolException{ /** * @param message */ public TinyVMException (String message) { super(message); } /** * @param cause */ public TinyVMException (Throwable cause) { super(cause); } /** * @param message * @param cause */ public TinyVMException (String message, Throwable cause) { super(message, cause); } /** * Comment for <code>serialVersionUID</code> */ private static final long serialVersionUID = 3763098561520351026L;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -