Files
lombok/test/transform/resource/after-eclipse/SneakyThrowsPlain.java
T

25 lines
519 B
Java

import lombok.SneakyThrows;
class SneakyThrowsPlain {
SneakyThrowsPlain() {
super();
}
public @lombok.SneakyThrows void test() {
try
{
System.out.println("test1");
}
catch (final java.lang.Throwable $ex) {
throw lombok.Lombok.sneakyThrow($ex);
}
}
public @SneakyThrows void test2() {
try
{
System.out.println("test2");
}
catch (final java.lang.Throwable $ex) {
throw lombok.Lombok.sneakyThrow($ex);
}
}
}