KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > net > protocol > transport > WireProtocolHeaderFormatException


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.transport;
5
6 import com.tc.net.protocol.TCProtocolException;
7
8 /**
9  * Thrown to indicate a byte format/validation error with TC Wire protocol header blocks
10  *
11  * @author teck
12  */

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