langtools/test/tools/doclint/EmptyExceptionTest.java
author joehw
Tue, 09 May 2017 10:34:32 -0700
changeset 45036 4210d32dacab
parent 30730 d3ce7619db2c
permissions -rw-r--r--
8150256: removing xerces-related dead code Reviewed-by: lancea

/*
 * @test /nodynamiccopyright/
 * @bug 8004832
 * @summary Add new doclint package
 * @modules jdk.compiler/com.sun.tools.doclint
 * @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 { }
}