catch
示例:
try { throw new Exception() } catch (Exception e) { }
在应用快速修复后:
try { throw new Exception() } catch (Exception ignored) { }