catch
示例:
try { throw new Exception() } catch (Exception e) { }
应用快速修复后,结果如下所示:
try { throw new Exception() } catch (Exception ignored) { }