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

8 lines
207 B
Java

class Test {
/**
* @throws ArrayIndexOutOfBoundsException in some case
* @throws ArrayIndexOutOfBoundsException and in some other case
*/
void foo() throws ArrayIndexOutOfBoundsException {
}
}