From 3e18007af326e1401282a1f97dded74a4b306726 Mon Sep 17 00:00:00 2001 From: Sander Koning Date: Mon, 5 Dec 2011 22:51:37 +0100 Subject: Update warning about @SneakyThrows requiring lombok.jar on the classpath (#306) --- website/features/SneakyThrows.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/website/features/SneakyThrows.html b/website/features/SneakyThrows.html index 583dc40d..b88c726d 100644 --- a/website/features/SneakyThrows.html +++ b/website/features/SneakyThrows.html @@ -20,9 +20,6 @@ or otherwise modify the thrown checked exception; it simply fakes out the compiler. On the JVM (class file) level, all exceptions, checked or not, can be thrown regardless of the throws clause of your methods, which is why this works.

- CAREFUL: Unlike other lombok transformations, you need to put lombok.jar on your classpath when - you run your program. -

Common use cases for when you want to opt out of the checked exception mechanism center around 2 situations: