📄 romulusexception.java
字号:
/* * RomulusException.java * * Created on 2003年11月5日, 下午9:42 */package romulus;/** * * @author Romulus * @version 1.0 */public class RomulusException extends java.lang.Exception { public static String IdentError = "Ident Error in Romulus."; public static String TimingError = "Timing Error in Romulus."; public static String TypeError = "Type value Error in Romulus."; /** * Creates a new instance of <code>RomulusException</code> without detail message. */ public RomulusException() { super("Error in Romulus."); } /** * Constructs an instance of <code>RomulusException</code> with the specified detail message. * @param msg the detail message. */ public RomulusException(String msg) { super(msg); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -