com.gemstone.org.jgroups.blocks.LockMultiLockedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gemfire-jgroups Show documentation
Show all versions of gemfire-jgroups Show documentation
SnappyData store based off Pivotal GemFireXD
/** Notice of modification as required by the LGPL
* This file was modified by Gemstone Systems Inc. on
* $Date$
**/
package com.gemstone.org.jgroups.blocks;
/**
* Thrown by the {@link com.gemstone.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.2 2005/07/17 11:36:40 chrislott Exp $
*/
public class LockMultiLockedException extends Exception {
private static final long serialVersionUID = 131820252305444362L;
public LockMultiLockedException() {
super();
}
public LockMultiLockedException(String s) {
super(s);
}
}