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

Summary: RFE: exceptions throw points highlighting
Product: java Reporter: cy6ergn0m <cy6ergn0m>
Component: EditorAssignee: Dusan Balek <dbalek>
Status: NEW ---    
Severity: blocker CC: malfunction84
Priority: P3    
Version: 6.x   
Hardware: All   
OS: All   
Issue Type: ENHANCEMENT Exception Reporter:

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).