Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/javaDoc/IgnoreDuplicateThrows.java
T

8 lines
207 B
Java

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