KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jgroups > blocks > LockNotReleasedException


1 package org.jgroups.blocks;
2
3 /**
4  * This exception indicated that lock manager refused to release a lock on
5  * some resource.
6  *
7  * @author Roman Rokytskyy (rrokytskyy@acm.org)
8  */

9 public class LockNotReleasedException extends Exception JavaDoc {
10
11     public LockNotReleasedException() {
12         super();
13     }
14
15     public LockNotReleasedException(String JavaDoc s) {
16         super(s);
17     }
18     
19 }
20
Popular Tags