/home/sjenks/NetBeansProjects/CS2/src/trees/BinaryTreeCreationException.java
 1 /*
 2  * is the code for BinaryTreeCreationException
 3  */
 4 package trees;
 5 
 6 /**
 7  *
 8  * @author sjenks
 9  */
10 public class BinaryTreeCreationException extends Exception {
11     /**
12      * Create a new instance of <code>BinaryTreeCreateExxeption</code> without 
13      * detail message.
14      */
15     public BinaryTreeCreationException(){
16 }
17 
18 
19 /**
20  * Constructs an instance of <code>BinaryTreeCreationException</code> without 
21  * the specified detail message
22  * @parmmsg the detail message.
23  */
24     public BinaryTreeCreationException(String msg){
25         super(msg);
26     }
27 }