01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.async.api;
05:
06: import com.tc.exception.TCException;
07:
08: public class EventHandlerException extends TCException {
09:
10: public EventHandlerException() {
11: this (null, null);
12: }
13:
14: public EventHandlerException(String message) {
15: this (message, null);
16: }
17:
18: public EventHandlerException(Throwable cause) {
19: this (null, cause);
20: }
21:
22: public EventHandlerException(String message, Throwable cause) {
23: super(message, cause);
24: }
25:
26: }
|