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