1.
现有代码如下:
public class Example {
void topGo() {
try {
middleGo();
} catch (Exception e) {
System.out.println("catch");
}
}
void middleGo() throws Exception {
go();
System.out.println("late middle");
}
void go() throws Exception {
throw new Exception();
}
public static void main(String[] args) {
Example example = new Example();
example.topGo();
}
}
该代码的执行结果是?