KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > object > TCObjectException


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.object;
5
6 /**
7  * @author orion
8  */

9 public class TCObjectException extends Exception JavaDoc {
10   TCObjectException() {
11     super();
12   }
13
14   TCObjectException(Exception JavaDoc e) {
15     super(e);
16   }
17
18   TCObjectException(String JavaDoc message) {
19     super(message);
20   }
21 }
Popular Tags