KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > util > concurrent > TCExceptionResultException


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.util.concurrent;
5
6 /**
7  * Thrown by TCFuture to indicate an exception (as opposed to a non-exception) result
8  *
9  * @author teck
10  */

11 public class TCExceptionResultException extends Exception JavaDoc {
12
13   public TCExceptionResultException() {
14     super();
15   }
16
17   public TCExceptionResultException(String JavaDoc message) {
18     super(message);
19
20   }
21
22   public TCExceptionResultException(Throwable JavaDoc cause) {
23     super(cause);
24   }
25
26   public TCExceptionResultException(String JavaDoc message, Throwable JavaDoc cause) {
27     super(message, cause);
28   }
29
30 }
Popular Tags