| Home >> All >> org >> [ jgroups Javadoc ] |
Source code: org/jgroups/ChannelException.java
1 // $Id: ChannelException.java,v 1.6 2005/07/17 11:38:05 chrislott Exp $ 2 3 package org.jgroups; 4 5 /** 6 * This class represents the super class for all exception types thrown by 7 * JGroups. 8 */ 9 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 }