create changelog entry
[debian/openrocket] / android-libraries / TreeViewList / src / pl / polidea / treeview / TreeConfigurationException.java
1 package pl.polidea.treeview;
2
3 /**
4  * Exception thrown when there is a problem with configuring tree.
5  * 
6  */
7 public class TreeConfigurationException extends RuntimeException {
8
9     private static final long serialVersionUID = 1L;
10
11     public TreeConfigurationException(final String detailMessage) {
12         super(detailMessage);
13     }
14
15 }