下面程序输出的结果是什么? ( ) public class Quiz2 { public static void main(String args[]) { try {throw new MyException(); }catch(Exception e) { System.out.println('It's caught!'); }finally{ System.out.println('It's finally caught!'); } } } class MyException extends Exception{}