Skip to content

Files

Latest commit

 

History

History
11 lines (6 loc) · 291 Bytes

catchExceptionByValue.md

File metadata and controls

11 lines (6 loc) · 291 Bytes

Pattern: Exception is caught by value

Issue: -

Description

The exception is caught by value. It could be caught as a (const) reference which is usually recommended in C++.

Further Reading