From 603e45d2a1a86c01797307a18638dfabea0d2f64 Mon Sep 17 00:00:00 2001 From: Jan Nedbal Date: Tue, 4 Nov 2025 12:54:20 +0100 Subject: [PATCH] Readme: mention throws LSP checks --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 344611b..d911a55 100644 --- a/README.md +++ b/README.md @@ -284,6 +284,7 @@ parameters: check: missingCheckedExceptionInThrows: true # enforce checked exceptions to be stated in @throws tooWideThrowType: true # report invalid @throws (exceptions that are not actually thrown in annotated method) + throwTypeCovariance: true # enable LSP checks implicitThrows: false # no @throws means nothing is thrown (otherwise Throwable is thrown) checkedExceptionClasses: - YourApp\TopLevelRuntimeException # track only your exceptions (children of some, typically RuntimeException)