Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/javaDoc/DuplicateThrows.java
2016-03-07 17:24:51 +01:00

9 lines
298 B
Java

class Test {
/**
* Test.
* @throws java.lang.Exception in case of problems
* <warning descr="Duplicate @throws or @exception tag for exception 'java.lang.Exception'">@exception</warning> java.lang.Exception in case of other problems
*/
void test() throws java.lang.Exception {
}
}