I hereby claim:
- I am saberduck on github.
- I am saberduck (https://keybase.io/saberduck) on keybase.
- I have a public key ASARBS9kU3Hh0KzSYfWqdwPZKv_IQ6tGe18dh5YQxT9lNgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
public class TryWithResourcesTest { | |
public static void main(String[] args) throws Exception { | |
try (MyClosable a = new MyClosable()) { | |
if (System.currentTimeMillis() % 2 == 0) { | |
throw new RuntimeException("Exception on try block"); | |
} | |
} catch (Exception e) { | |
Throwable[] suppressed = e.getSuppressed(); |