Eclipse - Handling Java Exceptions like in NetBeans
Posted
by Xorty
on Stack Overflow
See other posts from Stack Overflow
or by Xorty
Published on 2010-04-28T09:17:19Z
Indexed on
2010/04/28
9:23 UTC
Read the original article
Hit count: 360
I recently moved from NetBeans to Eclipse and I very much miss one great feature - whenever I use method which throws some kind of exception, NetBeans alerted me and I needed to add try-catch and NetBeans automatically generated exception type for me. Is there something similiar for Eclipse?
f.e. : Integer.parseInt(new String("foo"))
;
NetBeans alerts I need to catch NumberFormatException.
Eclipse doesn't alert me at all
I am using Eclipse Java EE IDE for Web Developers, 3.5 - Galileo
© Stack Overflow or respective owner