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: /**
07: * Thrown by wire protocol routers when a particular wire protocol sub-protocol is not supported
08: *
09: * @author teck
10: */
11: public class UnsupportedWireProtocolException extends
12: WireProtocolException {
13:
14: public UnsupportedWireProtocolException() {
15: super ();
16: }
17:
18: public UnsupportedWireProtocolException(String message) {
19: super (message);
20: }
21:
22: public UnsupportedWireProtocolException(Throwable cause) {
23: super (cause);
24: }
25:
26: public UnsupportedWireProtocolException(String message,
27: Throwable cause) {
28: super(message, cause);
29: }
30:
31: }
|