public class TestExceptionExample {
  public static void main(String[] args) {
    ExceptionExample e1 = new ExceptionExample();
    e1.addValue(99, 3); // add 3 to element 99
    System.out.println("end of run");
  } // end main
} // end TestExceptionExample
