Skip to content

Files

Latest commit

 

History

History
11 lines (6 loc) · 368 Bytes

CatchThrowable.md

File metadata and controls

11 lines (6 loc) · 368 Bytes

Pattern: Catching Throwable

Issue: -

Description

Checks for catching a Throwable. In most cases that is much too broad, and is also dangerous because it can catch exceptions such as ThreadDeath and OutOfMemoryError.

Further Reading