*/
public void addCoordinator(String googleID, String name, String email)
throws AccountExistsException {
// Check that the account does not already exist
if (getCoordinator(googleID) != null) {
throw new AccountExistsException();
}
Coordinator coordinator = new Coordinator(googleID, name, email);
try {