Example #1
0
 public void validateStudent(Student s)
 {
     if (this.nameIsEmpty(s.getName()))
         throw new StudentException("Name cannot be empty!\n");
     if (this.studentExists(s.getId()))
         throw new StudentException("Student id already exists!\n");
 }