Class InterruptedExceptionSwallowed

java.lang.Object
com.google.errorprone.bugpatterns.BugChecker
com.google.errorprone.bugpatterns.InterruptedExceptionSwallowed
All Implemented Interfaces:
BugChecker.MethodTreeMatcher, BugChecker.TryTreeMatcher, Suppressible, Serializable

public final class InterruptedExceptionSwallowed extends BugChecker implements BugChecker.MethodTreeMatcher, BugChecker.TryTreeMatcher
Checks for cases where an InterruptedException is caught as part of a catch block catching a supertype, and not specially handled.
See Also: