using namespace std; #include #ifndef QUEUEEXCEPTION_H #define QUEUEEXCEPTION_H class QueueException { public: QueueException(const string& msg): _msg(msg){} string what(){return _msg;} private: string _msg; }; #endif