langtools/test/tools/doclint/MissingThrowsTest.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:-missing MissingThrowsTest.java
 * @run main DocLintTester -Xmsgs:missing -ref MissingThrowsTest.out MissingThrowsTest.java
 */

/** */
public class MissingThrowsTest {
    /** */
    void missingThrows() throws Exception { }
}