Files
openide/java/java-tests/testData/inspection/javaDocInspection/ignoreDuplicateThrows/src/Test.java
T

9 lines
198 B
Java

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