1 package locklib;
2
3 /**
4 * Exception thrown setting the parent of a target to a target that has a
5 * different lock manager.
6 */
7 public class DifferentLockManagersException extends RuntimeException {
8 /**
9 * Version for serialization.
10 */
11 private static final long serialVersionUID = 1;
12
13 /**
14 * Creates a new exception.
15 * @param description a description of the exception
16 */
17 public DifferentLockManagersException(String description) {
18 super(description);
19 }
20 }