1 package org.jgroups.blocks;2 3 /**4 * This exception indicated that lock manager refused to give a lock on 5 * some resource.6 * 7 * @author Roman Rokytskyy (rrokytskyy@acm.org)8 */9 public class LockNotGrantedException extends Exception {10 11 public LockNotGrantedException() {12 super();13 }14 15 public LockNotGrantedException(String s) {16 super(s);17 }18 19 }