public void cleanUpCourse(String courseID) throws CourseDoesNotExistException {
Course course = getCourse(courseID);
// Check that the course exists
if (course == null)
throw new CourseDoesNotExistException();
try {
getPM().deletePersistent(course);
deleteAllStudents(courseID);