Code:

tryToTeachAgain:
try {
teach();
} catch (UnMotivatedStudentException _umse) {
drop(_umse);
goto tryToTeachAgain;
}




NEVER use goto if possible... That is what I learned from a C++ coding book XD.