Код: Выделить всё
class C {
private static final Object myObject = makeObject(); // *
private static Object makeObject() throws IOException {
try {
...
} catch (IOException e) {
...
throw e;
}
}
}
Код: Выделить всё
error: unreported exception IOException; must be caught or declared to be thrown
Подробнее здесь: https://stackoverflow.com/questions/416 ... -initializ
Мобильная версия