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: */package com.tc.util.concurrent;
04:
05: /**
06: * Thrown by TCFuture to indicate an exception (as opposed to a non-exception) result
07: *
08: * @author teck
09: */
10: public class TCExceptionResultException extends Exception {
11:
12: public TCExceptionResultException() {
13: super ();
14: }
15:
16: public TCExceptionResultException(String message) {
17: super (message);
18:
19: }
20:
21: public TCExceptionResultException(Throwable cause) {
22: super (cause);
23: }
24:
25: public TCExceptionResultException(String message, Throwable cause) {
26: super(message, cause);
27: }
28:
29: }
|