315316317318319320321
} if(exceptions.size() == 1) { throw exceptions.get(0); } throw new MultipleFailureException(exceptions); }
310311312313314315316
77787980818283
} if (fErrors.isEmpty()) return; if (fErrors.size() == 1) throw fErrors.get(0); throw new MultipleFailureException(fErrors); }
324325326327328329330
6061626364656667
errors.add(e); } } } if (!errors.isEmpty()) { throw new MultipleFailureException(errors); } }
307308309310311312313
327328329330331332333
313314315316317318319
80818283848586
return; } if (errors.size() == 1) { throw errors.get(0); } throw new MultipleFailureException(errors); }