text cover

Data Abstraction and Problem Solving with C++

Walls and Mirrors

by Frank M. Carrano

Addison Wesley Logo

TableException.h

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

Generated on Sun Aug 27 22:04:06 2006 for AWLogo by  doxygen 1.4.6