KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > async > api > EventHandlerException


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
3  */

4 package com.tc.async.api;
5
6 import com.tc.exception.TCException;
7
8 public class EventHandlerException extends TCException {
9
10   public EventHandlerException() {
11     this(null, null);
12   }
13
14   public EventHandlerException(String JavaDoc message) {
15     this(message, null);
16   }
17
18   public EventHandlerException(Throwable JavaDoc cause) {
19     this(null, cause);
20   }
21
22   public EventHandlerException(String JavaDoc message, Throwable JavaDoc cause) {
23     super(message, cause);
24   }
25
26 }
Popular Tags