ListIndexOutOfBoundsException.java (240B)
1 package lab4; 2 3 public class ListIndexOutOfBoundsException 4 extends IndexOutOfBoundsException 5 { 6 public ListIndexOutOfBoundsException(String s) 7 { 8 super(s); 9 } // end constructor 10 } // end ListIndexOutOfBoundsException 11