package Tables;

public class TableException extends RuntimeException {
  public TableException(String s) {
    super(s);
  } // end constructor

  private final static long serialVersionUID = 2006L;
} // end TreeException
