类 Example A 继承 Exception,类 ExampleB 继承 Example A

有如下代码片断:

try{ 
 throw new ExampleB(“b”); 
}catch(ExampleA e){ 
 System.out.printfln(“ExampleA”); 
}catch(Exception e){ 
 System.out.printfln(“Exception”); 
} 

输出的内容应该是:
A:ExampleA
B:Exception
C:b
D:无
答:输出为 A。