Is disabling Checked Exceptions in Java possible?

前端 未结 3 1764
無奈伤痛
無奈伤痛 2021-01-13 00:56

I was reading an article about checked and unchecked Exceptions in Java and found this article/link: https://projectlombok.org/disableCheckedExceptions.html

Accordin

3条回答
  •  执笔经年
    2021-01-13 01:54

    Use the Manifold compiler plugin with the exceptions plugin option. It effectively neutralizes checked exceptions. With this option checked exceptions behave like unchecked exceptions. No more compiler errors, no more boilerplate try/catch/wrap/rethrow nonsense. Works with Java 8 - 12.

提交回复
热议问题