KickJava   Java API By Example, From Geeks To Geeks.

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


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  * An error type for serious (non-recoverable) error conditions in the Terracotta system. No production code should ever
8  * catch this exception.
9  */

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