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: * Generic wire protocol exception
10: *
11: * @author teck
12: */
13: public class WireProtocolException extends TCProtocolException {
14:
15: public WireProtocolException() {
16: super ();
17: }
18:
19: public WireProtocolException(String message) {
20: super (message);
21: }
22:
23: public WireProtocolException(Throwable cause) {
24: super (cause);
25: }
26:
27: public WireProtocolException(String message, Throwable cause) {
28: super(message, cause);
29: }
30:
31: }
|