bboss.org.jgroups.blocks.VoteException Maven / Gradle / Ivy
The newest version!
package bboss.org.jgroups.blocks;
import bboss.org.jgroups.ChannelException;
/**
* This exception is thrown when voting listener cannot vote on the
* specified decree.
*
* @author Roman Rokytskyy ([email protected])
*/
public class VoteException extends ChannelException {
private static final long serialVersionUID = -878345689312038489L;
public VoteException(String msg) { super(msg); }
}