#include using namespace std; #include "Person.hpp" #include "Student.hpp" int main() { try { Student johnSnow("John", "Snow", 1234); } catch(BadName& a) { cout << "Exception occured: " << a.what() << endl; } }