Skip to content

Instantly share code, notes, and snippets.

@Raouf25
Last active April 10, 2020 16:54
Show Gist options
  • Save Raouf25/e1d0b0bb586d52bd0d6eb2f6068d0e7c to your computer and use it in GitHub Desktop.
Save Raouf25/e1d0b0bb586d52bd0d6eb2f6068d0e7c to your computer and use it in GitHub Desktop.
@FunctionalInterface
interface FunctionWithException<T, R, E extends Exception> {
R apply(T t) throws E;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment