01: package org.jgroups.blocks;
02:
03: /**
04: * This exception indicated that lock manager refused to release a lock on
05: * some resource.
06: *
07: * @author Roman Rokytskyy (rrokytskyy@acm.org)
08: */
09: public class LockNotReleasedException extends Exception {
10:
11: public LockNotReleasedException() {
12: super ();
13: }
14:
15: public LockNotReleasedException(String s) {
16: super(s);
17: }
18:
19: }
|