//enters the new UserRoleGroup into the db, effectively adding the invited user to the group
int newUserRoleGroupId = myTools.dataEntry(invitedUserUrg);
//check to see that the new UserRoleGroup was created properly
boolean relationshipConfirmed = myTools.dataSearch("UserRoleGroup", "id", newUserRoleGroupId);
//when failed to create the UserRoleGroup
if (!relationshipConfirmed){
return UserFactory.validUser(false);
}