01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.net.protocol.transport;
05:
06: import com.tc.net.protocol.TCProtocolException;
07:
08: /**
09: * Thrown to indicate a byte format/validation error with TC Wire protocol header blocks
10: *
11: * @author teck
12: */
13: public class WireProtocolHeaderFormatException extends
14: TCProtocolException {
15:
16: public WireProtocolHeaderFormatException() {
17: super ();
18: }
19:
20: public WireProtocolHeaderFormatException(Throwable cause) {
21: super (cause);
22: }
23:
24: public WireProtocolHeaderFormatException(String message,
25: Throwable cause) {
26: super (message, cause);
27: }
28:
29: WireProtocolHeaderFormatException(String message) {
30: super(message);
31: }
32:
33: }
|