ExceptionCallbackMain.java
上传用户:songled
上传日期:2022-07-14
资源大小:94k
文件大小:1k
源码类别:

进程与线程

开发平台:

Java

  1. public class ExceptionCallbackMain 
  2. extends Object 
  3. implements ExceptionListener {
  4. private int exceptionCount;
  5. public ExceptionCallbackMain() {
  6. exceptionCount = 0;
  7. }
  8. public void exceptionOccurred(Exception x, Object source) {
  9. exceptionCount++;
  10. System.err.println("EXCEPTION #" + exceptionCount +
  11. ", source=" + source);
  12. x.printStackTrace();
  13. }
  14. public static void main(String[] args) {
  15. ExceptionListener xListener = new ExceptionCallbackMain();
  16. ExceptionCallback ec = new ExceptionCallback(xListener);
  17. }
  18. }