![]() |
Data Abstraction and Problem Solving with C++Walls and Mirrorsby Frank M. Carrano |
![]() |
QueueException.hGo to the documentation of this file.00001 00015 #include <stdexcept> 00016 #include <string> 00017 using namespace std; 00018 00019 class QueueException : public logic_error 00020 { 00021 public: 00022 QueueException(const string& message = "") 00023 : logic_error(message.c_str()) 00024 {} // end constructor 00025 }; // end QueueException |