* if a course with the specified ID already exists
*/
public void addCourse(String ID, String name, String coordinatorID)
throws CourseExistsException {
if (getCourse(ID) != null) {
throw new CourseExistsException();
}
Course course = new Course(ID, name, coordinatorID);
try {