All Downloads are FREE. Search and download functionalities are using the official Maven repository.

bboss.org.jgroups.blocks.LockMultiLockedException Maven / Gradle / Ivy

The newest version!
package bboss.org.jgroups.blocks;


/**
 * Thrown by the {@link bboss.org.jgroups.blocks.DistributedLockManager#unlock(Object, Object, boolean)} method if a lock is only locally released, because it is locked
 * by multiple DistributedLockManagers. This can happen after a merge for example.
 * 
 * @author Robert Schaffar-Taurok ([email protected])
 * @version $Id: LockMultiLockedException.java,v 1.3 2006/11/13 17:42:10 bstansberry Exp $
 */
public class LockMultiLockedException extends Exception {

    private static final long serialVersionUID = 3719208228960070835L;

	public LockMultiLockedException() {
        super();
    }

    public LockMultiLockedException(String s) {
        super(s);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy