单项选择题

下面程序输出的结果是什么 ( )
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 MyExeeption extends Exception

A.It’s finally caught!
B.It’s caught!
C.It’s caught!/It’sfinally caught!
D.无输出