[JAVA] Improper Exception Handling
Throwable,Exception,RuntimeException must be that It should not be widely held, but specific exceptions such as FileNotFoundException, SQLException, IOException, ClassNotFoundEXception, etc. should be handled !!
Wring ex)
} catch(Exception e) { logger.error("ERROR-01 Exception"); }
Right ex)
} catch(SQLException e) { logger.error("ERROR-01 SQLException"); }
😀
Thank you!!
고마워!!
Comments
Post a Comment