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;
05:
06: import com.tc.exception.TCException;
07:
08: /**
09: * 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 message) {
20: super (message);
21: }
22:
23: public TCProtocolException(Throwable cause) {
24: super (cause);
25: }
26:
27: public TCProtocolException(String message, Throwable cause) {
28: super(message, cause);
29: }
30:
31: }
|