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 runtime (non-checked) Terracotta exceptions. Normal production code should never catch this.
07: */
08: public class TCRuntimeException extends RuntimeException {
09:
10: public TCRuntimeException() {
11: super ();
12: }
13:
14: public TCRuntimeException(String message) {
15: super (message);
16: }
17:
18: public TCRuntimeException(Throwable cause) {
19: super (cause);
20: }
21:
22: public TCRuntimeException(String message, Throwable cause) {
23: super(message, cause);
24: }
25:
26: }
|