allow duplicate throws (IDEADEV-41667)

This commit is contained in:
anna
2009-11-30 18:31:43 +03:00
parent d12aba123e
commit 95b588371d
4 changed files with 31 additions and 2 deletions
@@ -0,0 +1,9 @@
class Test {
/**
*@throws ArrayIndexOutOfBoundsException in some case
*@throws ArrayIndexOutOfBoundsException and in some other case
*/
void foo() throws ArrayIndexOutOfBoundsException {
}
}