interface MyOperation { void performOperation() throws Exception; } public class ExceptionLambdaDemo { public static void main(String[] args) { MyOperation operation = () -> { throw new Exception("Exception thrown from lambda expression"); }; try { operation.performOperation(); } catch (Exception e) { System.out.println("Exception caught: " + e.getMessage()); } } }