Skip to content

Files

Latest commit

 

History

History
11 lines (6 loc) · 506 Bytes

CatchArrayIndexOutOfBoundsException.md

File metadata and controls

11 lines (6 loc) · 506 Bytes

Pattern: Catching ArrayIndexOutOfBoundsException

Issue: -

Description

Checks for catching a ArrayIndexOutOfBoundsException. Catching ArrayIndexOutOfBoundsException should be avoided in the first place by checking the array size before accessing an array element. Catching the exception may mask underlying errors.

Further Reading