#ifndef PASSENGEREXCEPTION_H #define PASSENGEREXCEPTION_H #include using namespace std; // ALL YOU HAVE TO DO IS FIX #1 and #2. The rest comes down to the try and catch blocks you need to use in your main to test things out. class PassengerException: public logic_error { public: PassengerException(int request, int capacity): logic_error("Passenger Issues") { cout << "The requested int for passenger manipulation " << request << " is outside the capacity " << capacity << endl; } }; #endif