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: * An error type for serious (non-recoverable) error conditions in the Terracotta system. No production code should ever
07: * catch this exception.
08: */
09: public class TCInternalError extends TCError {
10:
11: public TCInternalError() {
12: super ("Terracotta Internal Error");
13: }
14:
15: public TCInternalError(String message) {
16: super (message);
17: }
18:
19: public TCInternalError(Throwable cause) {
20: super (cause);
21: }
22:
23: public TCInternalError(String message, Throwable cause) {
24: super(message, cause);
25: }
26:
27: }
|