📄 nulldeviceerrorhandler.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 + -