1 2 3 4 5 6
public class SneakyThrowsExample { @lombok.SneakyThrows public static void main(String... args) { throw new java.io.IOException("boo"); } }