rspec/rules/S1163/why.adoc
2023-06-12 09:22:59 +02:00

4 lines
379 B
Plaintext

== Why is this an issue?
If an exception is already being thrown within the `try` block or caught in a `catch` block, throwing another exception in the `finally` block will override the original exception.
This means that the original exception's message and stack trace will be lost, potentially making it challenging to diagnose and troubleshoot the root cause of the problem.