Searched refs:throwables (Results 1 – 2 of 2) sorted by relevance
140 private static String toMesssage(List<Throwable> throwables) {144 sw.write("Caught " + throwables.size() + " exceptions\n");145 for (int i = 0; i < throwables.size(); i++) {147 final Throwable exception = throwables.get(i);164 private MultipleExceptions(List<Throwable> throwables) {165 super(toMesssage(throwables));167 this.mThrowables = throwables;
62 ArrayList<Throwable> throwables = new ArrayList<>(); in after() local68 throwables.add(e); in after()72 .that(throwables) in after()