mirror of
https://github.com/openjdk/jdk.git
synced 2026-01-29 04:28:30 +00:00
13 lines
366 B
Java
13 lines
366 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @build DocLintTester
|
|
* @run main DocLintTester -Xmsgs:-syntax EmptyExceptionTest.java
|
|
* @run main DocLintTester -Xmsgs:syntax -ref EmptyExceptionTest.out EmptyExceptionTest.java
|
|
*/
|
|
|
|
/** . */
|
|
public class EmptyExceptionTest {
|
|
/** @exception NullPointerException */
|
|
int emptyException() throws NullPointerException { }
|
|
}
|