parseexception.java

来自「发布/订阅系统路由重配算法,可应用于ad hoc环境」· Java 代码 · 共 29 行

JAVA
29
字号
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 + =
减小字号Ctrl + -
显示快捷键?