create changelog entry
[debian/openrocket] / android-libraries / TreeViewList / src / pl / polidea / treeview / NodeAlreadyInTreeException.java
1 package pl.polidea.treeview;
2
3 /**
4  * The node being added is already in the tree.
5  * 
6  */
7 public class NodeAlreadyInTreeException extends RuntimeException {
8     private static final long serialVersionUID = 1L;
9
10     public NodeAlreadyInTreeException(final String id, final String oldNode) {
11         super("The node has already been added to the tree: " + id + ". Old node is:" + oldNode);
12     }
13
14 }