KickJava   Java API By Example, From Geeks To Geeks.

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


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  * The base class for all runtime (non-checked) Terracotta exceptions. Normal production code should never catch this.
8  */

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