1 package org.jgroups.blocks;2 3 import org.jgroups.ChannelException;4 5 /**6 * This exception is thrown when voting listener cannot vote on the7 * specified decree.8 * 9 * @author Roman Rokytskyy (rrokytskyy@acm.org)10 */11 public class VoteException extends ChannelException {12 13 public VoteException(String msg) { super(msg); }14 }