1 package org.jgroups.blocks; 2 3 4 /** 5 * Thrown by the {@link org.jgroups.blocks.DistributedLockManager#unlock(Object, Object, boolean)} method if a lock is only locally released, because it is locked 6 * by multiple DistributedLockManagers. This can happen after a merge for example. 7 * 8 * @author Robert Schaffar-Taurok (robert@fusion.at) 9 * @version $Id: LockMultiLockedException.java,v 1.3 2006/11/13 17:42:10 bstansberry Exp $ 10 */ 11 public class LockMultiLockedException extends Exception { 12 13 private static final long serialVersionUID = 3719208228960070835L; 14 15 public LockMultiLockedException() { 16 super(); 17 } 18 19 public LockMultiLockedException(String s) { 20 super(s); 21 } 22 23 } 24