mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-19 18:44:38 +02:00
12 lines
366 B
Java
12 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 { }
|
|
}
|