mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 09:20:53 +07:00
14 lines
343 B
Java
14 lines
343 B
Java
// "Remove 'Exception' from 'f()' throws list" "true-preview"
|
|
|
|
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 */ E<caret>xception /* 2 */ {}
|
|
}
|