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());
}
}
}
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter