简体   繁体   中英

Default Java exception handling code generated by Eclipse

The default exception handling code generated by Eclipse looks as follows:

try {
    methodThrowsACheckedException();
} catch (SomeCheckedException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
}

Would it not be better if Eclipse generated the following code instead?

try {
    methodThrowsACheckedException();
} catch (SomeCheckedException e) {
    // TODO Auto-generated catch block
    throw new RuntimeException(e);
}

You can configure eclipse to do that its your choice . Check Code Template-> Catch Block Body in Preferences->Java->Code style

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM