01: package org.jgroups.blocks;
02:
03: import org.jgroups.ChannelException;
04:
05: /**
06: * This exception is thrown when voting listener cannot vote on the
07: * specified decree.
08: *
09: * @author Roman Rokytskyy (rrokytskyy@acm.org)
10: */
11: public class VoteException extends ChannelException {
12:
13: public VoteException(String msg) {
14: super(msg);
15: }
16: }
|