From 9488c1c248569d91fa74ed9358baba7f175f02fa Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Mon, 12 Jun 2017 22:29:24 +0200 Subject: Removed old website; we no longer use it. --- website-old/disableCheckedExceptions.html | 61 ------------------------------- 1 file changed, 61 deletions(-) delete mode 100644 website-old/disableCheckedExceptions.html (limited to 'website-old/disableCheckedExceptions.html') diff --git a/website-old/disableCheckedExceptions.html b/website-old/disableCheckedExceptions.html deleted file mode 100644 index 64ad1cd8..00000000 --- a/website-old/disableCheckedExceptions.html +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - - Project Lombok side projects - Disable checked Exceptions - - -
-

Tired of checked exceptions?

-

- This lombok spinoff project consists of a hack that only works in javac - not eclipse or any other IDE.
- It will completely disable the notion of checked exceptions. You may throw any exception anywhere, and you may - also catch any exception anywhere. In standard javac, you may not catch a checked exception that is not declared - as thrown by at least 1 statement in your try block, unless it is Exception or Throwable.
- This restriction is lifted as well. -

-

Usage

-

- Just make sure disableCheckedExceptions-alpha.jar is on the classpath as you compile. For example:
- javac -cp disableCheckedExceptions-alpha.jar MySource.java -

-

- Ready to try it out? download it here: disableCheckedExceptions-alpha.jar -

-

- Want to know how its done? Grab the lombok repository here on github, - and look in the experimental directory. -

- -
- - - -- cgit