Community
Participate
Working Groups
package trycatch17_in;
import java.io.IOException;
public class TestMultiTryCatch {
private static void call() throws Exception, IOException {
}
public static void main(String[] args) {
/*[*/call();/*]*/
package trycatch17_out;
try {
} catch (Exception e) {
*
* Contributors:
* IBM Corporation - initial API and implementation
* Samrat Dhillon samrat.dhillon@gmail.com - Bug 388724 - [surround with try/catch][quick fix] Multi-Catch QuickFix creates compiler error
*******************************************************************************/
package org.eclipse.jdt.ui.tests.refactoring;
public void testSimple2() throws Exception {
tryCatchTest();
public void testMultiTryCatch() throws Exception {