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 157402 - RFE: exceptions throw points highlighting
Summary: RFE: exceptions throw points highlighting
Status: NEW
Alias: None
Product: java
Classification: Unclassified
Component: Editor (show other bugs)
Version: 6.x
Hardware: All All
: P3 blocker with 1 vote (vote)
Assignee: Dusan Balek
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-01-25 05:50 UTC by cy6ergn0m
Modified: 2013-09-02 14:19 UTC (History)
1 user (show)

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 cy6ergn0m 2009-01-25 05:50:12 UTC
Wanted highlighting for points that throws checked exception when cared at "catch"

for example:

InputStream is = ...;
try {
    is.read( buffer );
} catch( IOException e ) {
}

when caret at catch keyword, expected to be highlighted "read" or "is.read(buffer)". Highlighting should look like
method returns highlighting.

This features should not try to find unchecked exceptions (because it may be too slow).