create changelog entry
[debian/openrocket] / android-libraries / TreeViewList / src / pl / polidea / treeview / NodeNotInTreeException.java
1 package pl.polidea.treeview;
2
3 /**
4  * This exception is thrown when the tree does not contain node requested.
5  * 
6  */
7 public class NodeNotInTreeException extends RuntimeException {
8
9     private static final long serialVersionUID = 1L;
10
11     public NodeNotInTreeException(final String id) {
12         super("The tree does not contain the node specified: " + id);
13     }
14
15 }