text cover

Data Abstraction and Problem Solving with C++

Walls and Mirrors

by Frank M. Carrano

Addison Wesley Logo

QueueException.h

Go 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

Generated on Sun Aug 27 17:20:03 2006 for AWLogo by  doxygen 1.4.6