package ListArrayBased;

public class ListIndexOutOfBoundsException 
            extends IndexOutOfBoundsException {
  public ListIndexOutOfBoundsException(String s) {
    super(s);
  }  // end constructor

  private final static long serialVersionUID = 2006L;
}  // end ListIndexOutOfBoundsException
