Skip to content

Instantly share code, notes, and snippets.

@bdkosher
Created February 5, 2016 18:10
Show Gist options
  • Select an option

  • Save bdkosher/84a5d59904df5d4b54e5 to your computer and use it in GitHub Desktop.

Select an option

Save bdkosher/84a5d59904df5d4b54e5 to your computer and use it in GitHub Desktop.
So, Generic Exceptions are apparently a thing.
import java.util.function.Supplier;
public <T extends Throwable> void amIcrazy(Supplier<T> s) throws T {
throw s.get();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment