catch ブロックのパターンで、すべての型にマッチするものを報告します。
catch
例:
try f() catch { case e => ??? }
クイックフィックス適用後:
try f() catch { case e: Throwable => ??? }