KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jgroups > blocks > VoteException


1 package org.jgroups.blocks;
2
3 import org.jgroups.ChannelException;
4
5 /**
6  * This exception is thrown when voting listener cannot vote on the
7  * specified decree.
8  *
9  * @author Roman Rokytskyy (rrokytskyy@acm.org)
10  */

11 public class VoteException extends ChannelException {
12
13     public VoteException(String JavaDoc msg) { super(msg); }
14 }
Popular Tags