Read Time:19 Second
Description
The code has a return statement inside a finally block, which will cause any thrown exception in the try block to be discarded.
Modes of Introduction:
– Implementation
Related Weaknesses
Consequences
Other: Alter Execution Logic
Potential Mitigations
Phase: Implementation
Description:
Do not use a return statement inside the finally block. The finally block should have “cleanup” code.