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

📄 nulldeviceerrorhandler.java

📁 jConfig,JAVA读取XML的开源项目
💻 JAVA
字号:
package org.jconfig.error;

/**
 * This class implements the so called NullDevice ErrorHandler. It just
 * swallows the error messages. This ErrorHandler is used as default to
 * be backward compatible since jConfig has never reported any errors before.
 * 
 * @author Andreas Mecky andreasmecky@yahoo.de
 * @author Terry Dye terrydye@yahoo.com
 */
public class NullDeviceErrorHandler implements ErrorHandler {
	
	public void reportError(String message) {
	}

	public void reportError(String message, Throwable thrown) {
	}
	
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -