![]() |
Data Abstraction and Problem Solving with C++Walls and Mirrorsby Frank M. Carrano |
![]() |
TableException.hGo 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 |