Skip to content

Instantly share code, notes, and snippets.

View AntonyKapustin's full-sized avatar

Anton Kapustin AntonyKapustin

  • Tbilisi, Georgia.
View GitHub Profile
@poetix
poetix / Nonchalantly.java
Last active December 21, 2017 17:11
A Java 8 class for when you just don't give a fuck about that checked exception
public interface Nonchalantly<T> {
static <T, E extends Throwable> T invoke(Nonchalantly<T> f) throws E {
try {
return f.run();
} catch (Throwable e) {
throw (E) e;
}
}
T run() throws Throwable;