mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-30 08:22:16 +00:00
10 lines
205 B
Java
10 lines
205 B
Java
import lombok.SneakyThrows;
|
|
class SneakyThrowsPlain {
|
|
@lombok.SneakyThrows public void test() {
|
|
System.out.println("test1");
|
|
}
|
|
|
|
@SneakyThrows public void test2() {
|
|
System.out.println("test2");
|
|
}
|
|
} |