public class ListIndexOutOfBoundsException extends RuntimeException {
  public ListIndexOutOfBoundsException() {
    super("Index exceeds the bounds of the list");
  }

  public ListIndexOutOfBoundsException(String message) {
    super(message);
  }
}
