例外がスローされたときに、製品がその状態をクリーンアップしないか、誤ってクリーンアップするため、予期しない状態や制御フローが発生する。
関数やループが複雑になると、実行中にある程度のリソースのクリーンアップが必要になることがよくある。例外はコードの流れを乱し、必要なクリーンアップを妨げる可能性がある。
The product does not clean up its state or incorrectly cleans up its state when an exception is thrown, leading to unexpected state or control flow.
Often, when functions or loops become complicated, some level of resource cleanup is needed throughout execution. Exceptions can disturb the flow of the code and prevent the necessary cleanup from happening.