KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > net > protocol > TCProtocolException


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;
5
6 import com.tc.exception.TCException;
7
8 /**
9  * Thrown by protocol adaptors when a error is detected in the network stream
10  *
11  * @author teck
12  */

13 public class TCProtocolException extends TCException {
14
15   public TCProtocolException() {
16     super();
17   }
18
19   public TCProtocolException(String JavaDoc message) {
20     super(message);
21   }
22
23   public TCProtocolException(Throwable JavaDoc cause) {
24     super(cause);
25   }
26
27   public TCProtocolException(String JavaDoc message, Throwable JavaDoc cause) {
28     super(message, cause);
29   }
30
31 }
Popular Tags