java中具体怎样捕获异常?
1个回答
展开全部
比如在dao层类中写了一个可能会执行失败的方法:
捕获异常的代码如下:
public Map<String, Object> remove(int id) {
Map<String, Object> map = new HashMap<String, Object>();
try {
userGroupDao.remove(id);
map.put("isSuccess", true);
} catch (Exception e) {
map.put("isSuccess", false);
map.put("errorMsg", e.getMessage());
}
return map;
}
捕获异常的代码如下:
public Map<String, Object> remove(int id) {
Map<String, Object> map = new HashMap<String, Object>();
try {
userGroupDao.remove(id);
map.put("isSuccess", true);
} catch (Exception e) {
map.put("isSuccess", false);
map.put("errorMsg", e.getMessage());
}
return map;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询