* @throws UnknownEntityException if the group does not exist.
*/
public Group getGroupByName(String name)
throws DataBackendException, UnknownEntityException
{
Group group = getAllGroups().getGroupByName(name);
if (group == null)
{
throw new UnknownEntityException(
"The specified group does not exist");
}