C:\Users\notebook\Documents\NetBeansProjects\CS2\src\trees\BinaryTreeCreationException.java
 1 /*
 2  * BinaryTreeCreationException.java of trees package
 3  */
 4 package trees;
 5 
 6 /**
 7  *
 8  * @author notebook
 9  */
10 public class BinaryTreeCreationException extends Exception {
11 
12     /**
13      * Creates a new instance of <code>BinaryTreeCreationException</code>
14      * without detail message.
15      */
16     public BinaryTreeCreationException() {
17     }
18 
19     /**
20      * Constructs an instance of <code>BinaryTreeCreationException</code> with
21      * the specified detail message.
22      *
23      * @param msg the detail message.
24      */
25     public BinaryTreeCreationException(String msg) {
26         super(msg);
27     }
28 }
29