01: // $Id: ChannelException.java,v 1.6 2005/07/17 11:38:05 chrislott Exp $
02:
03: package org.jgroups;
04:
05: /**
06: * This class represents the super class for all exception types thrown by
07: * JGroups.
08: */
09: public class ChannelException extends Exception {
10:
11: public ChannelException() {
12: super ();
13: }
14:
15: public ChannelException(String reason) {
16: super (reason);
17: }
18:
19: public ChannelException(String reason, Throwable cause) {
20: super(reason, cause);
21: }
22:
23: }
|