text cover

Data Abstraction and Problem Solving with C++

Walls and Mirrors

by Frank M. Carrano

Addison Wesley Logo

TreeException.h

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

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