Home
last modified time | relevance | path

Searched refs:throwables (Results 1 – 2 of 2) sorted by relevance

/cts/common/device-side/util-axt/src/com/android/compatibility/common/util/
DSafeCleanerRule.java140 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;
/cts/tests/tests/media/bettertogether/src/android/media/bettertogether/cts/
DResourceReleaser.java62 ArrayList<Throwable> throwables = new ArrayList<>(); in after() local
68 throwables.add(e); in after()
72 .that(throwables) in after()