Throw an error if this column doesn't exist.
(int column)
| 4181 | |
| 4182 | /** Throw an error if this column doesn't exist. */ |
| 4183 | protected void checkColumn(int column) { |
| 4184 | if (column < 0 || column >= columns.length) { |
| 4185 | throw new ArrayIndexOutOfBoundsException("Column " + column + " does not exist."); |
| 4186 | } |
| 4187 | } |
| 4188 | |
| 4189 | |
| 4190 | /** Throw an error if this entry is out of bounds. */ |
no outgoing calls
no test coverage detected