java捕获异常的过程中,什么时候要用到throws

2024年11月30日 12:27
有1个网友回答
网友(1):

比如在dao层类中写了一个可能会执行失败的方法:
捕获异常的代码如下: 
public Map remove(int id) {
Map map = new HashMap();
try {
userGroupDao.remove(id);
map.put("isSuccess", true);
} catch (Exception e) {
map.put("isSuccess", false);
map.put("errorMsg", e.getMessage());
}
return map;
}