(int index, String method)
| 421 | |
| 422 | |
| 423 | private void boundsProblem(int index, String method) { |
| 424 | final String msg = String.format("The list size is %d. " + |
| 425 | "You cannot %s() to element %d.", count, method, index); |
| 426 | throw new ArrayIndexOutOfBoundsException(msg); |
| 427 | } |
| 428 | |
| 429 | |
| 430 | /** |