CatchingUnchecked
This catch block catches `Exception`, but can only catch unchecked exceptions. Consider catching RuntimeException (or something more specific) instead so it is more apparent that no checked exceptions are being handled.

Severity
WARNING

Suppression

Suppress false positives by adding the suppression annotation @SuppressWarnings("CatchingUnchecked") to the enclosing element.