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