package trycatch17_in; import java.io.IOException; import java.net.MalformedURLException; public class TestMultiTryCatch { private static void call() throws Exception, IOException, MalformedURLException { } public static void main(String[] args) { /*[*/call();/*]*/ } }