📄 parseexception.java
字号:
package sim;/** * Represents an exception which is thrown when an error is encountered * while parsing the initial properties file describing the simulation. */public class ParseException extends Exception { /** * Version unique identifier. */ static final long serialVersionUID = 12465l; /** * Creates a ParseException. */ public ParseException(){ super(); } /** * Creates a ParseException including a short description of the problem. * @param s the problem's description. */ public ParseException(String s){ super(s); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -