dsa

Data Structures & Algorithms - Spring 2018
Log | Files | Refs | README

ListIndexOutOfBoundsException.java (240B)


      1 package lab2;
      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