List<Student> studentList = getStudentCourseList(googleID);
for (Student s : studentList) {
if (s.getCourseID().equals(student.getCourseID())) {
throw new GoogleIDExistsInCourseException();
}
}
if (!student.getID().equals("")) {
throw new RegistrationKeyTakenException();