(int index, String method)
| 472 | |
| 473 | |
| 474 | private void boundsProblem(int index, String method) { |
| 475 | final String msg = String.format("The list size is %d. " + |
| 476 | "You cannot %s() to element %d.", count, method, index); |
| 477 | throw new ArrayIndexOutOfBoundsException(msg); |
| 478 | } |
| 479 | |
| 480 | |
| 481 | /** |