package java.lang; public class IndexOutOfBoundsException extends RuntimeException { public IndexOutOfBoundsException() { super(); } public IndexOutOfBoundsException(String s) { super(s); } }