报告 catch 块中匹配所有类型的模式。

示例:


  try f() catch {
    case e => ???
  }

在应用快速修复后:


  try f() catch {
    case e: Throwable => ???
  }