KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > exception > TCError


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.exception;
5
6
7 /**
8  * The base class for all Terracotta errors.
9  */

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