- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for getExceptionTypes (0.06 sec)
-
guava/src/com/google/common/util/concurrent/SimpleTimeLimiter.java
if (declaresInterruptedEx(m)) { set.add(m); } } return set; } private static boolean declaresInterruptedEx(Method method) { for (Class<?> exType : method.getExceptionTypes()) { // debate: == or isAssignableFrom? if (exType == InterruptedException.class) { return true; } } return false; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 9.5K bytes - Viewed (0)