mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-11 02:39:37 +07:00
11 lines
344 B
Java
11 lines
344 B
Java
import java.io.IOException;
|
|
|
|
class Test {
|
|
/**
|
|
* @throws IOException in some case
|
|
* <warning descr="'throws' tag description is missing"><warning descr="Duplicate @throws or @exception tag for exception 'java.io.IOException'">@throws</warning></warning> IOException
|
|
*/
|
|
void a() throws IOException{
|
|
throw new IOException();
|
|
}
|
|
} |