Biorąc pod uwagę ten kod, czy mogę być absolutnie pewien, że finallyblok zawsze wykonuje się, bez względu na to, co something()jest? try { something(); return success; } catch (Exception e) { return failure; } finally { System.out.println("I don't know if this will get printed...