2012-12-17 07:47:05 -08:00
|
|
|
/*
|
|
|
|
* @test /nodynamiccopyright/
|
2020-06-19 11:04:52 -07:00
|
|
|
* @bug 8004832 8247815
|
2012-12-20 17:59:46 +00:00
|
|
|
* @summary Add new doclint package
|
2015-05-21 11:41:04 -07:00
|
|
|
* @modules jdk.compiler/com.sun.tools.doclint
|
2012-12-17 07:47:05 -08:00
|
|
|
* @build DocLintTester
|
2020-06-19 11:04:52 -07:00
|
|
|
* @run main DocLintTester -Xmsgs:-missing EmptyExceptionTest.java
|
|
|
|
* @run main DocLintTester -Xmsgs:missing -ref EmptyExceptionTest.out EmptyExceptionTest.java
|
2012-12-17 07:47:05 -08:00
|
|
|
*/
|
|
|
|
|
|
|
|
/** . */
|
|
|
|
public class EmptyExceptionTest {
|
|
|
|
/** @exception NullPointerException */
|
2020-06-19 11:04:52 -07:00
|
|
|
void emptyException() throws NullPointerException { }
|
2012-12-17 07:47:05 -08:00
|
|
|
}
|