Skip to content

Files

Latest commit

 

History

History
11 lines (6 loc) · 370 Bytes

ThrowError.md

File metadata and controls

11 lines (6 loc) · 370 Bytes

Pattern: Throwing instance of Error

Issue: -

Description

Checks for throwing an instance of java.lang.Error. This is not appropriate within normal application code. Throw an instance of a more specific exception subclass instead.

Further Reading