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