public Group getGroup(String name) throws NoSuchGroupException {
throw new NoSuchGroupException("Anonymous userbases do not have groups: " + name);
}
public User gAddUser(String groupname, String username, String password, boolean checkSpace) throws NoSuchGroupException, UserExistsException {
throw new UserExistsException("<cannot add users to an anonymous userbase>");
}