如果方法 public void fun2(int a,int b),可能会抛出异常,要求调用fun2方法的语句进行异常处理,正确的是
A. public void fun2(int a,int b) try Exception {}
B. public void fun2(int a,int b) throws Exception {}
C. public void fun2(int a,int b) throw Exception {}
D. public void fun2(int a,int b) catch Exception {}