// "Add exception to method signature" "true" class C { interface I { void a(); } { Callable i = () -> { return new I() { public void a() { Thread.sleep(2000); } }; }; } }