KickJava   Java API By Example, From Geeks To Geeks.

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


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 /**
7  * Thrown by wire protocol routers when a particular wire protocol sub-protocol is not supported
8  *
9  * @author teck
10  */

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