catch
예:
try { throw new Exception() } catch (Exception e) { }
빠른 수정을 적용한 후:
try { throw new Exception() } catch (Exception ignored) { }