mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 09:20:53 +07:00
17 lines
441 B
Java
17 lines
441 B
Java
// "Remove 'IOException' from 'f()' throws list" "true-preview"
|
|
|
|
import java.io.FileNotFoundException;
|
|
import java.io.IOException;
|
|
|
|
class A {
|
|
/**
|
|
* @since 2020.3
|
|
* @author me
|
|
* @throws Exception first exception
|
|
* @throws Exception second exception
|
|
* @throws FileNotFoundException file not found
|
|
* @throws IOException IO exception
|
|
*/
|
|
void f() throws /* 1 */ Exception /* 2 */, /* 3 */ IO<caret>Exception /* 4 */ {}
|
|
}
|