5758596061626364656667
} }); Throwable t = holder.getData(); if(t != null) { throw new DAOOperationException(t.getMessage() != null ? t.getMessage() : "Error while DAO method invocation", t); } return result; }
424344454647484950
*/ @Override public Role getRole(String roleId) throws DAOOperationException { Role role = getById(roleId); if(role == null) { throw new DAOOperationException("Unknown role '" + roleId + "'", null); } return role; }