Home
last modified time | relevance | path

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

/cts/common/device-side/util-axt/src/com/android/compatibility/common/util/
DSafeCleanerRule.java45 private final List<Throwable> mThrowables = new ArrayList<>(); field in SafeCleanerRule
73 mThrowables.add(exception); in add()
95 mThrowables.add(0, t); in apply()
104 mThrowables.add(t); in apply()
113 mThrowables.addAll(extraThrowables); in apply()
118 mThrowables.removeIf(t -> t instanceof AssumptionViolatedException); in apply()
121 if (mThrowables.isEmpty()) return; in apply()
123 final int numberExceptions = mThrowables.size(); in apply()
125 fail(description, mThrowables.get(0)); in apply()
127 fail(description, new MultipleExceptions(mThrowables)); in apply() argument
[all …]