mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 00:20:55 +07:00
19 lines
272 B
Java
19 lines
272 B
Java
import java.io.IOException;
|
|
|
|
class InheritedDocInThrows extends A{
|
|
/**
|
|
* @throws IOException {@inheritDoc}
|
|
*/
|
|
void foo() throws IOException {
|
|
super.foo();
|
|
}
|
|
}
|
|
|
|
class A {
|
|
/**
|
|
* @throws IOException la-la-la
|
|
*/
|
|
void foo() throws IOException {
|
|
}
|
|
}
|