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