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