catch
例:
try { throw new Exception() } catch (Exception e) { }
クイックフィックス適用後:
try { throw new Exception() } catch (Exception ignored) { }