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

📄 exceptionhandler.java

📁 jtapi for telephone
💻 JAVA
字号:
package net.sourceforge.gjtapi.util;
/**
 * This is a class that encapsulates how to handle thread running exceptions.
 * <P>The base implementation is a NOP -- the exception is rethrown.
 * Creation date: (2000-05-10 7:15:02)
 * @author: Richard Deadman
 */
public class ExceptionHandler {
/**
 * The default ExceptionHandler just rethrows the Exception
 * Creation date: (2000-05-10 11:04:10)
 * @author: Richard Deadman
 * @param eh The EventHandler being invoked when the exception occurred.
 * @param ex The exception that occured.
 * @param other The parameter passed to the EventHandler
 * @exception java.lang.Exception the same exception.
 */
public void handleException(EventHandler eh, RuntimeException ex, Object other) throws RuntimeException {
	throw ex;
}
}

⌨️ 快捷键说明

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