mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 01:09:46 +07:00
8 lines
263 B
Java
8 lines
263 B
Java
|
|
enum ABC {
|
|
<error descr="Unhandled exception: java.io.IOException">A</error>(),
|
|
<error descr="Unhandled exception: java.io.IOException">B</error>,
|
|
<error descr="Unhandled exception: java.io.IOException">C</error>;
|
|
ABC() throws java.io.IOException {
|
|
}
|
|
} |