blob: 98fc00e56aa3b418260a355a7d2a01abcfdf883b [file] [log] [blame]
package trycatch_out;
public class TestRuntimeException1 {
public void foo() {
Class clazz= null;
try {
/*[*/clazz.getConstructors();/*]*/
} catch (SecurityException e) {
}
}
}