mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 10:51:06 +07:00
16 lines
383 B
Java
16 lines
383 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
|
|
*/
|
|
void f() throws /* 1 */ Exception /* 2 */ /* 3 */ /* 4 */ {}
|
|
}
|