1 // $Id: ChannelClosedException.java,v 1.2 2003/11/27 21:36:46 belaban Exp $2 3 package org.jgroups;4 5 6 public class ChannelClosedException extends ChannelException {7 8 public ChannelClosedException() {9 super();10 }11 12 public ChannelClosedException(String msg) {13 super(msg);14 }15 16 public String toString() {17 return "ChannelClosedException";18 }19 }20