01: package org.jgroups.blocks;
02:
03: /**
04: * Thrown by the {@link org.jgroups.blocks.DistributedLockManager#unlock(Object, Object, boolean)} method if a lock is only locally released, because it is locked
05: * by multiple DistributedLockManagers. This can happen after a merge for example.
06: *
07: * @author Robert Schaffar-Taurok (robert@fusion.at)
08: * @version $Id: LockMultiLockedException.java,v 1.2 2005/07/17 11:36:40 chrislott Exp $
09: */
10: public class LockMultiLockedException extends Exception {
11:
12: public LockMultiLockedException() {
13: super ();
14: }
15:
16: public LockMultiLockedException(String s) {
17: super(s);
18: }
19:
20: }
|