mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-06 03:21:12 +07:00
18 lines
294 B
Java
18 lines
294 B
Java
class Exception {
|
|
}
|
|
|
|
public class BuilderMethodException {
|
|
@lombok.Builder
|
|
private static void foo(int i) throws Exception {
|
|
System.out.println("sss");
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
try {
|
|
builder().i(2).build();
|
|
} catch (Exception ignore) {
|
|
}
|
|
}
|
|
}
|
|
|