⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 parseexception.java

📁 发布/订阅系统路由重配算法,可应用于ad hoc环境
💻 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 + -