KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > columba > core > gui > exception > UIExceptionListener


1 package org.columba.core.gui.exception;
2
3 import java.beans.ExceptionListener JavaDoc;
4
5 public class UIExceptionListener implements ExceptionListener JavaDoc {
6
7     public UIExceptionListener() {
8         super();
9     }
10
11     public void exceptionThrown(Exception JavaDoc e) {
12         // process exception -> show error dialog to user
13
new ExceptionHandler().processException(e);
14     }
15
16 }
17
Popular Tags