text cover

Data Abstraction and Problem Solving with C++

Walls and Mirrors

by Frank M. Carrano

Addison Wesley Logo

StackException.h

Go to the documentation of this file.
00001 
00015 #include <stdexcept>
00016 #include <string>
00017 
00018 using namespace std;
00019 
00022 class StackException : public logic_error
00023 {
00024 public:
00025    StackException(const string& message = "")
00026       : logic_error(message.c_str())
00027    {}  // end constructor
00028 }; // end StackException

Generated on Sun Aug 27 16:41:24 2006 for AWLogo by  doxygen 1.4.6