MCPcopy Index your code
hub / github.com/processing/processing / boundsProblem

Method boundsProblem

core/src/processing/data/IntList.java:474–478  ·  view source on GitHub ↗
(int index, String method)

Source from the content-addressed store, hash-verified

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 /**

Callers 4

addMethod · 0.95
subMethod · 0.95
multMethod · 0.95
divMethod · 0.95

Calls 1

formatMethod · 0.65

Tested by

no test coverage detected