in todoapp/app/src/main/java/com/example/android/architecture/blueprints/todoapp/tasks/domain/TasksListModel.java [87:90]
static void assertIndexWithinBounds(int index, List<?> items) {
if (index < 0 || index >= items.size())
throw new IllegalArgumentException("Index out of bounds");
}