Skip to content

Instantly share code, notes, and snippets.

@HyeonUkCho
Created October 22, 2019 10:35
Show Gist options
  • Save HyeonUkCho/f342631f44fe3ead288d246f0d3cf894 to your computer and use it in GitHub Desktop.
Save HyeonUkCho/f342631f44fe3ead288d246f0d3cf894 to your computer and use it in GitHub Desktop.
@SneakyThrows
public void testSneakyThrows() {
throw new IllegalAccessException();
}
public void testSneakyThrows() {
try {
throw new IllegalAccessException();
} catch (java.lang.Throwable $ex) {
throw lombok.Lombok.sneakyThrow($ex);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment