This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 188963 - Don't stop on exceptions rethrown in finally blocks
Summary: Don't stop on exceptions rethrown in finally blocks
Status: NEW
Alias: None
Product: debugger
Classification: Unclassified
Component: Java (show other bugs)
Version: 7.0
Hardware: PC Windows Vista
: P2 normal (vote)
Assignee: issues@debugger
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-07-26 17:31 UTC by Tomas Pavek
Modified: 2010-07-26 17:31 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Tomas Pavek 2010-07-26 17:31:23 UTC
Would it be possible to have exc. breakpoints not stop again and again in all finally blocks around the code where the exception happened?

It's an often use case for me that when an assertion or exception breakpoint is hit, I want to continue to try again (e.g. after a fix, or just as it is), but then the IDE stops again and again on dozen unrelated places in finally blocks where the exception is re-thrown.

This assumes that it is somewhat possible to recognize re-throwing in finally block from the original exception occurrence.