01: // $Id: ChannelNotConnectedException.java,v 1.2 2005/07/17 11:38:05 chrislott Exp $
02:
03: package org.jgroups;
04:
05: /**
06: * Thrown if an operation is attemped on an unconnected channel.
07: */
08: public class ChannelNotConnectedException extends ChannelException {
09:
10: public ChannelNotConnectedException() {
11: }
12:
13: public ChannelNotConnectedException(String reason) {
14: super (reason);
15: }
16:
17: public String toString() {
18: return "ChannelNotConnectedException";
19: }
20: }
|