1 package test.javadoc.method; 2 3 6 public class Test_1379666 { 7 10 public void ok() throws BadStringFormat { 11 } 12 13 16 public void error1() 17 throws test.javadoc.method.Test_1379666.BadStringFormat 18 { 19 } 20 21 25 public void error2() throws Test_1379666.BadStringFormat { 26 } 27 28 31 public static class BadStringFormat extends Exception { 32 36 BadStringFormat(String s) { 37 super(s); 38 } 39 } 40 } 41 | Popular Tags |