KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > net > protocol > tcm > TCMessageException


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.net.protocol.tcm;
5
6 import com.tc.exception.TCException;
7
8 /**
9  * @author Orion Letizi
10  */

11 public class TCMessageException extends TCException {
12
13   /**
14    *
15    */

16   public TCMessageException() {
17     super();
18   }
19
20   /**
21    * @param arg0
22    */

23   public TCMessageException(String JavaDoc arg0) {
24     super(arg0);
25   }
26
27   /**
28    * @param arg0
29    */

30   public TCMessageException(Throwable JavaDoc arg0) {
31     super(arg0);
32   }
33
34   /**
35    * @param arg0
36    * @param arg1
37    */

38   public TCMessageException(String JavaDoc arg0, Throwable JavaDoc arg1) {
39     super(arg0, arg1);
40   }
41
42 }
Popular Tags