Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/javaDoc/Exception4.java
Bas Leijdekkers b21a51bac3 fix test data
2013-10-05 23:13:48 +02:00

6 lines
272 B
Java

class Test {
<warning descr="Required tag '@throws' java.lang.Exception is missing">/**</warning>
* @throws <warning descr="Class java.lang.Integer is not a descendant of Throwable">Integer</warning> sometimes
*/
public void foo() throws Exception {}
}