📜  你遇到过什么样的异常,你是如何处理它们的? - 无论代码示例

📅  最后修改于: 2022-03-11 14:58:35.233000             🧑  作者: Mango

代码示例1
In Selenium: nosuchelement, nostaleexception, nosuchaframe common exception
In SQL: SQL exception 
To handle it: try/catch block and throws keyword 
(try / catch inside the block)
place try catch inside main method is easy  
throws keyword is used within the method signature 
disadvantage is: throws keyword whoever calls the method will 
have to handle the exception again but with try/catch you handle once. 
Try/catch is better way to handle it in utility class. 
Next time you call method you don’t get any exceptions