Skip to content

Files

Latest commit

 

History

History
11 lines (6 loc) · 352 Bytes

CatchError.md

File metadata and controls

11 lines (6 loc) · 352 Bytes

Pattern: Catching Error

Issue: -

Description

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

Further Reading