单项选择题
A.if ( i > 10 ) throw Exception(“something’s wrong!”);
B.if ( i > 10 ) throw Exception e (“something’s wrong!”);
C.if ( i > 10 ) throw new Exception(“something’s wrong!”);
D.if ( i > 10 ) throw new Exception e ("something’s wrong!");