author | joehw |
Mon, 26 Aug 2013 21:08:58 -0700 | |
changeset 22415 | 4e3bef0828af |
parent 14962 | 19ffdfafbcd2 |
child 30730 | d3ce7619db2c |
permissions | -rw-r--r-- |
14952 | 1 |
/* |
2 |
* @test /nodynamiccopyright/ |
|
14962 | 3 |
* @bug 8004832 |
4 |
* @summary Add new doclint package |
|
14952 | 5 |
* @build DocLintTester |
6 |
* @run main DocLintTester -Xmsgs:-syntax EmptyExceptionTest.java |
|
7 |
* @run main DocLintTester -Xmsgs:syntax -ref EmptyExceptionTest.out EmptyExceptionTest.java |
|
8 |
*/ |
|
9 |
||
10 |
/** . */ |
|
11 |
public class EmptyExceptionTest { |
|
12 |
/** @exception NullPointerException */ |
|
13 |
int emptyException() throws NullPointerException { } |
|
14 |
} |