Reports patterns in catch blocks that match all types.
catch
Example:
try f() catch { case e => ??? }
After the quick-fixes are applied:
try f() catch { case e: Throwable => ??? }