/**
 * An exception for when a BST method encounters a problem.
 *
 * @author Zach Tomaszewski
 * @author Blanca Polo
 * @version 19 Nov 2003
 */
public class BSTException extends Exception{
 
  /**
   * Constructs a new exception with no detail message. 
   */
  public BSTException( ){
    super();
  }
  
  /**
   * Constructs a new exception with the specified detail message.
   *
   * @param  message   the detail message for this exception to hold
   */
  public BSTException (String message){
    super(message);
  }

} //end class 
