1 package locklib;
2
3 /**
4 * Exception thrown when changing the target hierarchy would break existing
5 * lock chains.
6 */
7 public class HierarchyChangeBreaksChainException 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 HierarchyChangeBreaksChainException(String description) {
18 super(description);
19 }
20 }