mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 10:20:56 +07:00
16 lines
335 B
Java
16 lines
335 B
Java
interface Base {
|
|
/**
|
|
* @throws java.lang.RuntimeException if something wrong happens
|
|
*/
|
|
void test();
|
|
}
|
|
|
|
class Test implements Base {
|
|
/**
|
|
* @throws java.lang.RuntimeException {@inheritDoc}
|
|
* <warning descr="'@throws' tag description is missing">@throws</warning> java.lang.Error
|
|
*/
|
|
public void test() {
|
|
|
|
}
|
|
} |