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.exception;
05:
06: /**
07: * The base class for all standard, checked Terracotta exceptions.
08: */
09: public class TCException extends Exception {
10:
11: public TCException() {
12: super ();
13: }
14:
15: public TCException(String message) {
16: super (message);
17: }
18:
19: public TCException(Throwable cause) {
20: super (cause);
21: }
22:
23: public TCException(String message, Throwable cause) {
24: super(message, cause);
25: }
26:
27: }
|